审查视图

app/api/tencentCos.ts 295 字节
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
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 },
  );
}