Updated tests

This commit is contained in:
2019-07-04 19:35:11 +01:00
parent 2f254c74c2
commit bed7b9e258
3 changed files with 14 additions and 5 deletions

12
web/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')