feat: add tests
Some checks failed
TrafficCue Server CI / check (push) Has been cancelled

This commit is contained in:
2025-08-30 10:12:20 +02:00
parent 03e602c814
commit 390594bb39
8 changed files with 541 additions and 59 deletions

6
src/entry.ts Normal file
View File

@@ -0,0 +1,6 @@
import { initDb } from "./db";
import app from "./main";
await initDb();
Bun.serve(app);