You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
709 B
Python

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)