diff options
Diffstat (limited to 'flaskr/__init__.py')
| -rw-r--r-- | flaskr/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/flaskr/__init__.py b/flaskr/__init__.py index f2a4584..25c2682 100644 --- a/flaskr/__init__.py +++ b/flaskr/__init__.py @@ -24,9 +24,9 @@ def create_app(test_config=None): pass # Routes - # @app.route('/hello') - # def index(): - # return 'Hello, World!' + @app.route('/hello') + def hello(): + return 'Hello, World!' # Register functions and blueprints from . import db |
