diff --git a/main.py b/main.py new file mode 100644 index 0000000..8aee834 --- /dev/null +++ b/main.py @@ -0,0 +1,8 @@ +from flask import Flask +app = Flask(__name__) + +@app.route('/') +def hello_world(): + return 'Hello, World!' + +app.run()