from fastapi import APIRouter from app.api.v1.module_energy.chapter.controller import ChapterRouter from app.api.v1.module_energy.config.controller import TemplateConfigRouter from app.api.v1.module_energy.report_template.controller import EnergyReportTemplateRouter from app.api.v1.module_energy.report_review.controller import EnergyReportReviewRouter from app.api.v1.module_energy.variable.controller import VariableRouter energy_router = APIRouter() energy_router.include_router(EnergyReportTemplateRouter) energy_router.include_router(EnergyReportReviewRouter) energy_router.include_router(TemplateConfigRouter) energy_router.include_router(ChapterRouter) energy_router.include_router(VariableRouter)