All checks were successful
Build & Deploy MB Grid Solutions / build-and-deploy (push) Successful in 1m40s
6 lines
140 B
TypeScript
6 lines
140 B
TypeScript
import { NextResponse } from 'next/server';
|
|
|
|
export async function GET() {
|
|
return NextResponse.json({ status: 'ok' }, { status: 200 });
|
|
}
|