From b9c1227e10c86ad130ea97171b1d25a943b9c8cc Mon Sep 17 00:00:00 2001 From: chaim Date: Mon, 6 Apr 2026 13:41:58 +0000 Subject: [PATCH] feat: add /api/health endpoint alias --- web/app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/web/app.py b/web/app.py index b4a7b60..527493d 100644 --- a/web/app.py +++ b/web/app.py @@ -52,6 +52,7 @@ STATIC_DIR = Path(__file__).parent / "static" # ── Health ───────────────────────────────────────────────────────── @app.get("/health") +@app.get("/api/health") async def health(): return {"status": "ok"}