__init__.py 194 B

12345678
  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. from fastapi import APIRouter
  4. from . import call
  5. router = APIRouter()
  6. router.include_router(call.router, prefix="/call", tags=["常规操作"])