Add research workspace and graphing flows
This commit is contained in:
@@ -1,8 +1,25 @@
|
||||
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;
|
||||
export async function GET(request: Request) {
|
||||
return await app.fetch(request);
|
||||
}
|
||||
|
||||
export async function POST(request: Request) {
|
||||
return await app.fetch(request);
|
||||
}
|
||||
|
||||
export async function PATCH(request: Request) {
|
||||
return await app.fetch(request);
|
||||
}
|
||||
|
||||
export async function PUT(request: Request) {
|
||||
return await app.fetch(request);
|
||||
}
|
||||
|
||||
export async function DELETE(request: Request) {
|
||||
return await app.fetch(request);
|
||||
}
|
||||
|
||||
export async function OPTIONS(request: Request) {
|
||||
return await app.fetch(request);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user