ptSend/util/sql/base.js

15 lines
254 B
JavaScript
Raw Normal View History

2023-06-20 22:34:27 +08:00
const sqlite = require("sqlite3")
const path = require("path")
database = new sqlite.Database(path.join(__dirname,"/db"), function(e) {
if (err) throw err;
});
function run(){
database.run(...arguments)
}
function
module.exports = {
run
}