from fastapi import APIRouter from app.routers import grade_1 router = APIRouter(prefix="/math") router.include_router(grade_1.router)