diff --git a/__pycache__/app.cpython-312.pyc b/__pycache__/app.cpython-312.pyc new file mode 100644 index 0000000000..d0ed058dff Binary files /dev/null and b/__pycache__/app.cpython-312.pyc differ diff --git a/run.py b/run.py new file mode 100644 index 0000000000..d01b738a06 --- /dev/null +++ b/run.py @@ -0,0 +1,8 @@ +from flask import Flask + +app = Flask(__name__) + + +@app.route('/') +def hello(): + return 'Hello, World!' \ No newline at end of file