initial commit

This commit is contained in:
2025-04-29 18:09:00 +08:00
commit 4faed52de5
690 changed files with 13481 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
# 导入所有控制器
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']