From 1c95fef01a6e3c36f0d7bf2464b440924d66b7cb Mon Sep 17 00:00:00 2001 From: 111 Date: Sat, 24 Jan 2026 10:24:59 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20health=20=E8=B7=AF=E7=94=B1=E5=8A=A0?= =?UTF-8?q?=E4=B8=8A=20/api=20=E5=89=8D=E7=BC=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/main.py b/backend/app/main.py index d8cebd5..e024ba1 100644 --- a/backend/app/main.py +++ b/backend/app/main.py @@ -28,7 +28,7 @@ app.add_middleware( ) # 注册路由 -app.include_router(health_router) +app.include_router(health_router, prefix="/api") app.include_router(auth_router, prefix="/api") app.include_router(tenants_router, prefix="/api") app.include_router(tenant_apps_router, prefix="/api")