feat: add health check endpoint

This commit is contained in:
2026-06-16 11:41:04 +03:00
parent 9ac2c69fa7
commit 3fa23bed86

View File

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