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