Files
lcbp3.np-dms.work/frontend/api/health/route.js
2025-09-21 20:29:15 +07:00

8 lines
252 B
JavaScript
Executable File

// Simple health endpoint for compose/ops
export async function GET() {
return new Response(JSON.stringify({ status: 'ok', service: 'frontend', ts: Date.now() }), {
headers: { 'content-type': 'application/json' },
status: 200,
});
}