17 lines
375 B
Python
17 lines
375 B
Python
"""
|
|
Web UI 模块
|
|
智队中枢 Web 管理界面
|
|
"""
|
|
from flask import Blueprint
|
|
|
|
web_bp = Blueprint('web', __name__)
|
|
|
|
# 延迟导入,避免循环依赖
|
|
def register_web_blueprints(app):
|
|
"""注册 Web UI 蓝图"""
|
|
from app.web.routes import web_bp
|
|
from app.web.api import web_api_bp
|
|
|
|
app.register_blueprint(web_bp)
|
|
app.register_blueprint(web_api_bp)
|