from fastapi import APIRouter from app.api.routes import registration api_router = APIRouter() api_router.include_router(registration.router)