Add healthcheck endpoint

This commit is contained in:
Codex
2026-07-01 12:21:51 +03:00
parent 6f1912261a
commit a549b40a1d

View File

@@ -164,6 +164,7 @@ async def ping() -> dict[str, str]:
'status': 'ok',
}
@app.get('/healthcheck')
@app.get('/health')
async def health() -> dict[str, str]:
return {