from .api import v1_bp, v2_bp from flask import Flask def init_blueprints(app: Flask): app.register_blueprint(v1_bp) app.register_blueprint(v2_bp)