feat: add health check endpoint

This commit is contained in:
2026-06-16 11:42:09 +03:00
parent 61a9e47f4b
commit d3f961f1d5

View File

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