From 140f45ce30f21583b16ec1ecaf447f00a0c35d6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Mart=C3=ADnez=20Reviriego?= <andres.martinez_reviriego@student.reutlingen-university.de> Date: Tue, 4 Jun 2024 14:53:49 +0000 Subject: [PATCH] SmallFix --- app.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app.py b/app.py index ffdcfc9..e767fc4 100644 --- a/app.py +++ b/app.py @@ -42,6 +42,11 @@ def load_user(username): # Routes +#Health check route +@app.route('/healthcheck', methods=['GET']) +def healthcheck(): + return 'OK', 200 + # Route to show every toDo in the index page @app.route('/') def index(): -- GitLab