from fastapi import APIRouter from backend.app.api.v1.routes import router api_router = APIRouter() api_router.include_router(router, prefix="/v1")