15 lines
254 B
JavaScript
15 lines
254 B
JavaScript
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
|
|
} |