mirror of
https://github.com/kaythomas0/noisedash.git
synced 2025-11-11 10:56:20 +00:00
9 lines
254 B
JavaScript
9 lines
254 B
JavaScript
const sqlite3 = require('@vscode/sqlite3')
|
|
const fs = require('fs')
|
|
const path = require('path')
|
|
|
|
if (!fs.existsSync(path.join(__dirname, '../db'))) {
|
|
fs.mkdirSync(path.join(__dirname, '../db'))
|
|
}
|
|
module.exports = new sqlite3.Database('db/db.sqlite3')
|