import { NextRequest, NextResponse } from "next/server"; export async function handle( req: NextRequest, { params }: { params: { path: string[] } }, ) { return NextResponse.json( { success: true, data: { msg: "success", }, }, { status: 200 }, ); }