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