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