10 lines
411 B
Python
10 lines
411 B
Python
"""路由汇总。各业务模块在对应 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=["认证"])
|