WIP: update to include sectors!
[browser-rts.git] / src / lib / db.ts
1 import knex from 'knex';
2
3 export const db = knex({
4         client: 'better-sqlite3',
5         connection: {
6                 filename: './data.db'
7         },
8         debug: true
9 });