From ee9ced5c1916f544c6f36b40ba80d05f8055da07 Mon Sep 17 00:00:00 2001 From: Benjamin Toby Date: Mon, 30 Mar 2026 06:01:30 +0100 Subject: [PATCH] Add Heath check route --- src/pages/api/{hello.ts => health.ts} | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) rename src/pages/api/{hello.ts => health.ts} (69%) diff --git a/src/pages/api/hello.ts b/src/pages/api/health.ts similarity index 69% rename from src/pages/api/hello.ts rename to src/pages/api/health.ts index 2861d2e..10f80d8 100644 --- a/src/pages/api/hello.ts +++ b/src/pages/api/health.ts @@ -1,7 +1,5 @@ import { BunxRouteParams } from "@moduletrace/bunext/types"; export default async function handler({}: BunxRouteParams) { - return Response.json({ - msg: "Hi", - }); + return Response.json({ msg: "Server Running" }); }