8 lines
248 B
JavaScript
Executable File
8 lines
248 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,
|
|
});
|
|
}
|