summaryrefslogtreecommitdiffstats
path: root/flaskr
diff options
context:
space:
mode:
authorMitsuo Tokumori <[email protected]>2023-10-29 06:59:37 -0500
committerMitsuo Tokumori <[email protected]>2023-10-29 06:59:37 -0500
commit9baa55436bc5a98d118a17656bbf25e563522964 (patch)
treedaa01118bd11f5cf13d386d2c727a384563df1da /flaskr
parent71e7d6516608486f67afad5aad1f7b7f9a45886f (diff)
downloadustayml-9baa55436bc5a98d118a17656bbf25e563522964.tar.gz
ustayml-9baa55436bc5a98d118a17656bbf25e563522964.tar.bz2
ustayml-9baa55436bc5a98d118a17656bbf25e563522964.zip
Add unit tests
Diffstat (limited to 'flaskr')
-rw-r--r--flaskr/__init__.py6
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