initial commit/creation

This commit is contained in:
2019-07-04 15:25:44 +01:00
commit 277790a349
3 changed files with 20 additions and 0 deletions

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(debug=True, host='0.0.0.0')