from flask import jsonify, abort from .. import bp @bp.route('/') def hello(): return jsonify({'message': 'Hello, Flask!'})