aboutsummaryrefslogtreecommitdiff
path: root/api/index.ts
blob: 15976e376cac50bfd6a00c6ca104caaf68be5ad0 (plain)
1
2
3
4
5
6
7
8
9
10
import app from "../src/server.js";
import { handle } from "hono/vercel";

const handler = handle(app);

export const GET = handler;
export const POST = handler;
export const PATCH = handler;
export const PUT = handler;
export const OPTIONS = handler;