import SQLDatabase from 'better-sqlite3' export let glauth = undefined export function dbInit() { glauth = new SQLDatabase(process.env.GLAUTH_DB ?? 'auth.db', {}) console.log(`Loaded in GLAuth - users.db`) }