Files
mb-grid-solutions.com/app/api/health/route.ts
Marc Mintel 47fc471e14
All checks were successful
Build & Deploy MB Grid Solutions / build-and-deploy (push) Successful in 1m40s
deploy
2026-01-29 11:51:41 +01:00

6 lines
140 B
TypeScript

import { NextResponse } from 'next/server';
export async function GET() {
return NextResponse.json({ status: 'ok' }, { status: 200 });
}