ChatGPT-Next-Web/app/api/test/route.ts
2024-04-29 23:11:16 +08:00

11 lines
213 B
TypeScript

import { NextRequest, NextResponse } from "next/server";
async function handle(
req: NextRequest,
{ params }: { params: { path: string[] } },
) {
return NextResponse.json({});
}
export const GET = handle;