from .upload import bp as upload_bp from .file_access import bp as file_access_bp def register_common_bp(app): app.register_blueprint(upload_bp) app.register_blueprint(file_access_bp)