Skip to content
Snippets Groups Projects
Commit 140f45ce authored by Andrés Martínez Reviriego's avatar Andrés Martínez Reviriego
Browse files

SmallFix

parent dba520b7
No related branches found
No related tags found
No related merge requests found
...@@ -42,6 +42,11 @@ def load_user(username): ...@@ -42,6 +42,11 @@ def load_user(username):
# Routes # Routes
#Health check route
@app.route('/healthcheck', methods=['GET'])
def healthcheck():
return 'OK', 200
# Route to show every toDo in the index page # Route to show every toDo in the index page
@app.route('/') @app.route('/')
def index(): def index():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment