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

15 lines
515 B

# controller/__init__.py
# 导入所有控制器模块(触发其初始化)
from .BuilderController import *
from .GraphController import *
from .LoginController import *
from .QAController import *
from .RegisterController import *
from .OperationController import *
from .GraphStyleController import *
# 可选:如果控制器里定义了 blueprint,也可以在这里统一导出
# from .BuilderController import builder_bp
# from .GraphController import graph_bp
# from .LoginController import login_bp