changed files depending on the old folder "app" to the new folder "src"

This commit is contained in:
2025-10-20 16:41:14 +02:00
parent 272c9519b9
commit d8e2027efa
4 changed files with 9 additions and 9 deletions

View File

@@ -1,4 +1,4 @@
import * as db from "../app/sql";
import * as db from "../src/sql";
const query = db.db.query("DELETE FROM events;");
query.run();

View File

@@ -1,5 +1,5 @@
import { Event } from "../app/component/event/events";
import * as db from "../app/sql";
import { Event } from "../src/component/event/events";
import * as db from "../src/sql";
import { Database } from "bun:sqlite";
export function init ( db: Database ) {