6 lines
104 B
TypeScript

import { NextResponse } from 'next/server';
export function GET() {
return new NextResponse('OK');
}