feat: add health check endpoint

This commit is contained in:
2026-06-16 11:39:05 +03:00
parent 82192a3b55
commit f839dca134

View File

@@ -142,3 +142,9 @@ async def ping() -> dict[str, str]:
'message': 'pong',
'status': 'ok',
}
@app.get('/health')
async def health() -> dict[str, str]:
return {
'status': 'ok',
}