initial commit

This commit is contained in:
danijoo
2022-11-27 10:40:20 +01:00
commit baed30754e
4 changed files with 52 additions and 0 deletions

12
app.py Normal file
View File

@@ -0,0 +1,12 @@
from flask import Flask
app = Flask(__name__)
@app.route('/', methods=["GET"])
def hello_world(): # put application's code here
return 'Hello World!'
if __name__ == '__main__':
app.run(host="0.0.0.0", port=5000)