Initial commit

This commit is contained in:
talksik
2020-12-12 13:22:56 -05:00
commit 619d195e96
2978 changed files with 291181 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello World'