diff --git a/src/app/api/[[...route]]/route.ts b/src/app/api/[[...route]]/route.ts new file mode 100644 index 0000000..9f3733f --- /dev/null +++ b/src/app/api/[[...route]]/route.ts @@ -0,0 +1,10 @@ +import { Hono } from "hono"; +import { handle } from "hono/vercel"; + +const app = new Hono().basePath("/api"); + +app.get("/health", (context) => { + return context.json({ status: "ok" }); +}); + +export const GET = handle(app);