mirror of
https://github.com/dec0dOS/zero-ui.git
synced 2025-02-24 23:44:37 +08:00
8 lines
205 B
JavaScript
8 lines
205 B
JavaScript
const low = require("lowdb");
|
|
const FileSync = require("lowdb/adapters/FileSync");
|
|
|
|
const adapter = new FileSync(process.env.ZU_DATAPATH || "data/db.json");
|
|
|
|
const db = low(adapter);
|
|
|
|
module.exports = db;
|