From 3e5451c0e8c9869555cb5ab8976ddeace4fb459d Mon Sep 17 00:00:00 2001 From: Tahar Lamred & Theresa Nerz Date: Fri, 19 Jun 2026 13:57:47 +0200 Subject: [PATCH] Begruessungstext geaendert --- app/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.py b/app/app.py index e6f5c30..f76646a 100644 --- a/app/app.py +++ b/app/app.py @@ -4,7 +4,7 @@ app = Flask(__name__) @app.route("/") def hello(): - return "Hallo aus meiner Flask-App!" + return "Willkommen in unserem Escape Room!" if __name__ == "__main__": app.run(host="0.0.0.0", port=9003)