This repository has been archived on 2025-06-26. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
l1l1th-old/src/db.js
2024-10-10 18:08:19 +02:00

9 lines
No EOL
160 B
JavaScript

const knex = require("knex")({
client: "better-sqlite3",
useNullAsDefault: true,
connection: {
filename: "data.db"
}
});
module.exports = { knex };