We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8a5bcf commit cbe9409Copy full SHA for cbe9409
app.py
@@ -0,0 +1,10 @@
1
+from flask import Flask
2
+app = Flask(__name__)
3
+
4
+@app.route('/')
5
+def hello_world():
6
+ return 'Codeflix'
7
8
9
+if __name__ == "__main__":
10
+ app.run()
0 commit comments