# 导入各页面蓝图
from .home import bp as main_bp
from .wizard import bp as wizard_bp

# 注册蓝图函数
def register_blueprints(app):
    app.register_blueprint(main_bp)
    app.register_blueprint(wizard_bp) 