inital commit

This commit is contained in:
chikovanreuden
2025-10-20 02:05:08 +02:00
commit 2fb5f48a54
19 changed files with 601 additions and 0 deletions

9
run/db_init.ts Normal file
View File

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