nex_basse/backend/app/api/v1/router.py

19 lines
725 B
Python

from fastapi import APIRouter
from app.api.v1.endpoints import auth, users, permissions, roles, menus, dicts, params, logs, dashboard, prompts, ai_models, meetings, hotwords
router = APIRouter()
router.include_router(auth.router)
router.include_router(users.router)
router.include_router(roles.router)
router.include_router(permissions.router)
router.include_router(menus.router)
router.include_router(dicts.router)
router.include_router(params.router)
router.include_router(logs.router)
router.include_router(dashboard.router)
router.include_router(prompts.router)
router.include_router(ai_models.router)
router.include_router(meetings.router)
router.include_router(hotwords.router, prefix="/hotwords", tags=["Hotwords"])