- 收口 page aggregate 读取、本地状态与命令客户端\n- 接入 phase7 document ai sidecar 与前端编排入口\n- 更新 architecture 与 design 状态迁移
13 lines
445 B
Python
13 lines
445 B
Python
from fastapi import APIRouter
|
|
|
|
from . import ai_agent, chat, health, luckysheet_ws, tasks
|
|
|
|
api_router = APIRouter(prefix="/api/v1")
|
|
api_router.include_router(tasks.router, tags=["tasks"])
|
|
api_router.include_router(chat.router, tags=["chat"])
|
|
api_router.include_router(ai_agent.router, tags=["ai-agent"])
|
|
|
|
root_router = APIRouter()
|
|
root_router.include_router(health.router, tags=["health"])
|
|
root_router.include_router(luckysheet_ws.router)
|