add hello world test app

This commit is contained in:
null 2024-02-04 17:54:07 +01:00
parent 28c14598bb
commit 16590df484
1 changed files with 11 additions and 0 deletions

11
app.py Normal file
View File

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