From e76b6556ba27ac7f2f7bdcd1333c14424f233307 Mon Sep 17 00:00:00 2001 From: Ratul Maharaj <56479869+RatulMaharaj@users.noreply.github.com> Date: Tue, 19 Aug 2025 15:03:42 +0200 Subject: [PATCH] Update health check --- src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index e21c8b1..0ab9bed 100644 --- a/src/index.ts +++ b/src/index.ts @@ -34,8 +34,8 @@ const app = new Hono<{ Bindings: HttpBindings; Variables: AppVariables }>(); app.use(jwtMiddleware); -app.get("/healthcheck", (c) => { - return c.text(""); +app.get("/health", (c) => { + return new Response("ok", { status: 200 }); }); app.all("/", async (c) => {