Initial Commit

This commit is contained in:
dan
2022-01-19 22:33:21 -05:00
commit 86ef2da3bb

12
app.py Normal file
View File

@@ -0,0 +1,12 @@
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello World!'
if __name__ == '__main__':
app.run()