Skip to content

Commit d1c0e3c

Browse files
committed
Initial commit
0 parents  commit d1c0e3c

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

gist-flask.py

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

0 commit comments

Comments
 (0)