add hello world test app

This commit is contained in:
null
2024-02-04 17:54:07 +01:00
parent 28c14598bb
commit 16590df484
+11
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)