7 lines
No EOL
147 B
Python
7 lines
No EOL
147 B
Python
from flask import Blueprint
|
|
|
|
mtest_app=Blueprint('mtest_app', __name__)
|
|
|
|
@mtest_app.route('/mtest')
|
|
def mtest_home():
|
|
return {'hello': 'world'} |