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 }