()
| 2 | * Health check endpoint for deployment platforms and container probes. |
| 3 | */ |
| 4 | export async function GET(): Promise<Response> { |
| 5 | return Response.json( |
| 6 | { |
| 7 | status: 'ok', |
| 8 | timestamp: new Date().toISOString(), |
| 9 | }, |
| 10 | { status: 200 } |
| 11 | ) |
| 12 | } |
no outgoing calls