feature:基本框架
This commit is contained in:
@@ -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=["认证"])
|
||||
Reference in New Issue
Block a user