build(api): setup Hono base route handler

This commit is contained in:
ngc2207 2025-01-31 16:37:08 +08:00
parent 66deafc4fb
commit 0b624f0873

View File

@ -1,10 +1,17 @@
import { Hono } from "hono";
import { handle } from "hono/vercel";
import auth from "@/features/auth/server/route";
const app = new Hono().basePath("/api");
app.get("/health", (context) => {
return context.json({ status: "ok" });
app.get("/health", (c) => {
return c.json({ status: "ok" });
});
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const routes = app.route("/auth", auth);
export const GET = handle(app);
export const POST = handle(app);
export type AppType = typeof routes;