from fastapi import APIRouter from . import duty router = APIRouter() router.include_router(duty.router, prefix="/duty")