Files
cdtestplant_v1/apps/project/controllers/__init__.py
2025-04-29 18:09:00 +08:00

14 lines
768 B
Python

# 导入所有控制器
from apps.project.controllers.project import ProjectController
from apps.project.controllers.round import RoundController
from apps.project.controllers.dut import DutController
from apps.project.controllers.design import DesignController
from apps.project.controllers.testDemand import TestDemandController
from apps.project.controllers.case import CaseController
from apps.project.controllers.problem import ProblemController
from apps.project.controllers.treeOperation import TreeController
# 将导入的控制器以列表方式放入下面数组
__all__ = ['ProjectController', 'RoundController', 'DutController', 'DesignController', 'TestDemandController',
'CaseController', 'ProblemController', 'TreeController']