__init__.py 151 B

123456
  1. from fastapi import APIRouter
  2. from . import event
  3. router = APIRouter()
  4. router.include_router(event.router, prefix="/event", tags=["事件增删改"])