9 lines
214 B
TypeScript
9 lines
214 B
TypeScript
import { Event } from "../src/component/event/events";
|
|
import * as db from "../src/sql";
|
|
import { Database } from "bun:sqlite";
|
|
|
|
export function init ( db: Database ) {
|
|
Event.createTable( db );
|
|
};
|
|
|
|
init(db.db); |