diff --git a/src/index.ts b/src/index.ts index cddf314..569076d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -34,6 +34,7 @@ const app = new Elysia() return { success: false, message: "Internal server error" }; }) .get("/health", () => ({ status: "ok", timestamp: new Date().toISOString() })) + .get("/", () => ({ status: "ok", message: "API is running" })) .use(bugReportRoutes) .use(adminRoutes) .listen({