Skip to content

Commit f080e70

Browse files
committed
Initial commit
0 parents  commit f080e70

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

app.py

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from flask import Flask
2+
3+
app = Flask(__name__)
4+
5+
@app.route('/')
6+
def hello():
7+
return "Hello, World!"

requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Flask

0 commit comments

Comments
 (0)