fix health report

This commit is contained in:
kandrusyak
2023-08-24 22:48:57 +03:00
parent 0f8de210d3
commit 3607e5c8b7

View File

@@ -9,7 +9,7 @@ def create_app() -> FastAPI:
@app.get('/health') @app.get('/health')
async def health() -> str: async def health() -> str:
return 'ok' return '{"status":"OK"}'
from medical_info.routers import medical_cards, checkups from medical_info.routers import medical_cards, checkups