9 lines
214 B
TypeScript
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); |