From 21910eca416d4a413c9e84795965edeffb202c22 Mon Sep 17 00:00:00 2001 From: Daniel Bulant Date: Mon, 27 Apr 2026 19:49:17 +0200 Subject: [PATCH] add api ok endpoint --- api/src/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/api/src/index.ts b/api/src/index.ts index a6836fb..13ab176 100644 --- a/api/src/index.ts +++ b/api/src/index.ts @@ -18,7 +18,8 @@ const app = new Elysia() .use(statsApp) .use(partyApp) .use(partyAnalysisApp) - .use(partySocketApp), + .use(partySocketApp) + .get("/", () => ({ ok: true })), ) .listen(4000);