from fastapi import APIRouter from .about import router as about_router router = APIRouter() router.include_router(about_router)