From 47569db9ae41179267b20e2772bf7c1fe4cd1386 Mon Sep 17 00:00:00 2001 From: lhx Date: Thu, 30 Oct 2025 17:39:37 +0800 Subject: [PATCH 1/2] =?UTF-8?q?bug=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/main.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app/main.py b/app/main.py index d4552b4..35ef2cb 100644 --- a/app/main.py +++ b/app/main.py @@ -9,7 +9,6 @@ from .core.database import init_db from .api.account import router as account_router from .api.database import router as database_router from .api.task import router as task_router -from .api.test import router as test_router from .api.comprehensive_data import router as comprehensive_data_router from .utils.scheduler import task_scheduler From f320eb626d451b32665db73382ec57453d679fd4 Mon Sep 17 00:00:00 2001 From: lhx Date: Thu, 30 Oct 2025 17:41:28 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index 35ef2cb..2a1d620 100644 --- a/app/main.py +++ b/app/main.py @@ -68,7 +68,7 @@ app.include_router(account_router, prefix="/api") app.include_router(database_router, prefix="/api") app.include_router(task_router, prefix="/api") app.include_router(comprehensive_data_router, prefix="/api") -app.include_router(test_router, prefix="/api") +# app.include_router(test_router, prefix="/api") # 根路径 @app.get("/")