1 2 3 4 5 6
from fastapi import APIRouter from .register import router as register_router router = APIRouter() router.include_router(register_router)