We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1def274 commit a74d477Copy full SHA for a74d477
1 file changed
run.py
@@ -1,3 +1,7 @@
1
-from app import create_app
+from flask import Flask
2
3
-app = create_app()
+app = Flask(__name__)
4
+
5
+@app.route("/")
6
+def index():
7
+ return "Ciao mondo!"
0 commit comments