add api ok endpoint

This commit is contained in:
Daniel Bulant 2026-04-27 19:49:17 +02:00
parent a41ad5fb6e
commit 21910eca41
No known key found for this signature in database

View file

@ -18,7 +18,8 @@ const app = new Elysia()
.use(statsApp)
.use(partyApp)
.use(partyAnalysisApp)
.use(partySocketApp),
.use(partySocketApp)
.get("/", () => ({ ok: true })),
)
.listen(4000);