add healthcheck to remaining apps

This commit is contained in:
2025-11-25 07:05:14 +00:00
parent eccd53673c
commit 6d9686e373
87 changed files with 850 additions and 632 deletions

View File

@@ -20,4 +20,10 @@ app = FastAPI(
openapi_url="/api/openapi.json",
)
@app.get("/")
async def health():
return {"status": "ok"}
app.include_router(router)