From aa1a56c15ae1cb1a4a729cf31e6bb47f05fd11fb Mon Sep 17 00:00:00 2001 From: Omar-268 Date: Mon, 13 Oct 2025 13:09:41 +0000 Subject: [PATCH] Add test_app.py --- test_app.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 test_app.py diff --git a/test_app.py b/test_app.py new file mode 100644 index 0000000..2597091 --- /dev/null +++ b/test_app.py @@ -0,0 +1,10 @@ +from flask import Flask + +app = Flask(__name__) + +@app.route('/') +def hello_world(): + return 'Hello, Worlddddddddddd!!!' + +if __name__ == '__main__': + app.run(debug=True)