summaryrefslogtreecommitdiffstats
path: root/flaskr/__init__.py
diff options
context:
space:
mode:
authorMitsuo Tokumori <[email protected]>2023-10-27 19:05:20 -0500
committerMitsuo Tokumori <[email protected]>2023-10-27 19:05:20 -0500
commit87e6ced8ecd0ba54af1f67319fccf96c13ba6261 (patch)
treef132089f56a73cd799f98c800ab98b9e0a61ee5e /flaskr/__init__.py
parent3d8f5d82738f27cdde78ba4bd0b07535c234f6db (diff)
downloadustayml-87e6ced8ecd0ba54af1f67319fccf96c13ba6261.tar.gz
ustayml-87e6ced8ecd0ba54af1f67319fccf96c13ba6261.tar.bz2
ustayml-87e6ced8ecd0ba54af1f67319fccf96c13ba6261.zip
Add authentication logic
Diffstat (limited to 'flaskr/__init__.py')
-rw-r--r--flaskr/__init__.py2
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