xpeditis2.0/apps/frontend/app/api/health/route.ts
2026-06-12 11:33:37 +02:00

7 lines
170 B
TypeScript

/**
* Health check endpoint used by the Docker HEALTHCHECK.
*/
export function GET() {
return Response.json({ status: 'ok', timestamp: new Date().toISOString() });
}