fix little bug

This commit is contained in:
sijinhui 2024-04-29 23:11:16 +08:00
parent 48517034f2
commit 852401d556

View File

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