Files
lcbp3.np-dms.work/frontend/api/health/route.js

8 lines
241 B
JavaScript
Executable File

// File: frontend/api/health/route.js
export async function GET() {
return new Response(JSON.stringify({ status: 'ok', service: 'frontend', ts: Date.now() }), {
headers: { 'content-type': 'application/json' },
status: 200,
});
}