Files
77th_eventcalenderntfy/run/db_init.ts
chikovanreuden 2fb5f48a54 inital commit
2025-10-20 02:05:08 +02:00

9 lines
214 B
TypeScript

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);