Files
2026-06-25 17:41:06 +08:00

9 lines
172 B
Python

from fastapi import APIRouter
from .depts import router
depts_router = APIRouter()
depts_router.include_router(router, tags=["部门模块"])
__all__ = ["depts_router"]