From 0360cd0cc1f593873797166e294374a5902cb377 Mon Sep 17 00:00:00 2001 From: austnv Date: Sun, 14 Jun 2026 16:10:42 +0300 Subject: [PATCH] edit health endpoint --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 73fea0e..174ad51 100644 --- a/main.py +++ b/main.py @@ -14,7 +14,7 @@ app = FastAPI( version=get_version_from_pyproject() ) -@app.get("/api/health") +@app.get("/api/v1/health") async def health_check(): return {"status": "healthy", "service": "uvpn-backend"}