diff options
| author | Mitsuo Tokumori <[email protected]> | 2023-10-27 19:05:20 -0500 |
|---|---|---|
| committer | Mitsuo Tokumori <[email protected]> | 2023-10-27 19:05:20 -0500 |
| commit | 87e6ced8ecd0ba54af1f67319fccf96c13ba6261 (patch) | |
| tree | f132089f56a73cd799f98c800ab98b9e0a61ee5e /flaskr/__init__.py | |
| parent | 3d8f5d82738f27cdde78ba4bd0b07535c234f6db (diff) | |
| download | ustayml-87e6ced8ecd0ba54af1f67319fccf96c13ba6261.tar.gz ustayml-87e6ced8ecd0ba54af1f67319fccf96c13ba6261.tar.bz2 ustayml-87e6ced8ecd0ba54af1f67319fccf96c13ba6261.zip | |
Add authentication logic
Diffstat (limited to 'flaskr/__init__.py')
| -rw-r--r-- | flaskr/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/flaskr/__init__.py b/flaskr/__init__.py index 19d5a1e..dffc858 100644 --- a/flaskr/__init__.py +++ b/flaskr/__init__.py @@ -25,7 +25,7 @@ def create_app(test_config=None): # Routes @app.route('/') - def hello(): + def index(): return 'Hello, World!' # Register functions and blueprints |
