WebAPP Exam 2025

This commit is contained in:
2025-06-28 18:31:48 +02:00
commit 0e9ec24d94
42 changed files with 7546 additions and 0 deletions

11
server/db.js Normal file
View File

@ -0,0 +1,11 @@
'use strict';
const sqlite = require('sqlite3');
// open the database
const db = new sqlite.Database('test.db', (err) => {
if (err) throw(err);
});
module.exports = db;