Skip to content

Commit cbe9409

Browse files
Create app.py
1 parent c8a5bcf commit cbe9409

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

app.py

+10
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)