5 lines
142 B
TypeScript
5 lines
142 B
TypeScript
import { NextResponse } from 'next/server';
|
|
|
|
export function GET(): Response {
|
|
return NextResponse.json({ status: 200 }, { status: 200 });
|
|
} |