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" }); }