feat: add health check endpoint

This commit is contained in:
2026-06-16 11:46:08 +03:00
parent c06a01259d
commit 08fdd92060

View File

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