File size: 179 Bytes
0971cc4
 
 
 
 
1
2
3
4
5
6
import { NextRequest, NextResponse } from "next/server";

export async function GET(req: NextRequest): Promise<NextResponse> {
  return new NextResponse("OK", { status: 200 });
}