from fastapi import APIRouter from .user.router import router as user_router router = APIRouter(prefix="") router.include_router(user_router)