9 lines
204 B
Python
9 lines
204 B
Python
# 路由蓝图
|
|
|
|
from flask import Blueprint
|
|
|
|
main_bp = Blueprint("main", __name__)
|
|
|
|
# 导入各路由模块
|
|
from app.routes import students, plans, problems, settings, auth, classes, users, backup, goals
|