9 lines
235 B
TypeScript
9 lines
235 B
TypeScript
import { app } from '@/lib/server/api/app';
|
|
|
|
export const GET = app.fetch;
|
|
export const POST = app.fetch;
|
|
export const PATCH = app.fetch;
|
|
export const PUT = app.fetch;
|
|
export const DELETE = app.fetch;
|
|
export const OPTIONS = app.fetch;
|