from fastapi import APIRouter from .country import app as country_app app = APIRouter() app.include_router(country_app, prefix='/country')