13 lines
439 B
Python
13 lines
439 B
Python
from fastapi import APIRouter
|
|
|
|
from . import chat, health, luckysheet_ws, tasks, lightrag
|
|
|
|
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(lightrag.router, tags=["lightrag"])
|
|
|
|
root_router = APIRouter()
|
|
root_router.include_router(health.router, tags=["health"])
|
|
root_router.include_router(luckysheet_ws.router)
|