You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
625 B

from fastapi import APIRouter
from backend.api import auth, historical, realtime, batch, cache, settings
api_router = APIRouter()
api_router.include_router(auth.router, prefix="/auth", tags=["认证"])
api_router.include_router(historical.router, prefix="/historical", tags=["历史数据"])
api_router.include_router(realtime.router, prefix="/realtime", tags=["实时订阅"])
api_router.include_router(batch.router, prefix="/batch", tags=["批量操作"])
api_router.include_router(cache.router, prefix="/cache", tags=["缓存管理"])
api_router.include_router(settings.router, prefix="/settings", tags=["系统配置"])