user blacklists

This commit is contained in:
Ashley Graves 2024-10-10 18:08:19 +02:00
parent fae08327b9
commit aca0882b21
7 changed files with 573 additions and 20 deletions

9
src/db.js Normal file
View file

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