feat: add /api/health endpoint alias

This commit is contained in:
2026-04-06 13:41:58 +00:00
parent 5c1fdd643f
commit b9c1227e10

View File

@@ -52,6 +52,7 @@ STATIC_DIR = Path(__file__).parent / "static"
# ── Health ─────────────────────────────────────────────────────────
@app.get("/health")
@app.get("/api/health")
async def health():
return {"status": "ok"}