feat: add health check endpoint

This commit is contained in:
2026-06-16 11:44:50 +03:00
parent 792b512df0
commit 592a06417c

View File

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