__init__.py 327 B

12345678910111213
  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. from fastapi import APIRouter, Request, Depends
  4. from . import person
  5. from . import type_data
  6. router = APIRouter()
  7. router.include_router(person.router, prefix="/person", tags=["人员管理"])
  8. router.include_router(type_data.router, prefix="/type_data", tags=["类型管理"])