Files
GibSend/apps/web/src/app/api/v1/[[...route]]/route.ts
2024-08-11 10:29:42 +10:00

9 lines
248 B
TypeScript

import { handle } from "hono/vercel";
import { app } from "~/server/public-api";
export const GET = handle(app);
export const POST = handle(app);
export const PUT = handle(app);
export const DELETE = handle(app);
export const PATCH = handle(app);