7 lines
170 B
TypeScript
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() });
|
|
}
|