feature:基本框架

This commit is contained in:
2026-09-08 19:17:35 +08:00
commit 8698f1f53a
56 changed files with 3320 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
"""路由汇总。各业务模块在对应 Phase 落地后按模块加入:
- auth / product / trade / profile / memory / knowledge / risk / advisor / workorder / admin
"""
from fastapi import APIRouter
from api.routers import auth, health
api_router = APIRouter()
api_router.include_router(health.router, prefix="/api", tags=["系统"])
api_router.include_router(auth.router, prefix="/api", tags=["认证"])