Update app.py

This commit is contained in:
2025-04-07 20:47:23 +02:00
parent b958529d38
commit 1413422c83

2
app.py
View File

@ -3,7 +3,7 @@ app = Flask(__name__)
@app.route("/")
def hello():
return "<h1>Hello, Drone CI!</h1>"
return "<h1>Ello, Drone CI!</h1>"
if __name__ == "__main__":
app.run(host="0.0.0.0", port=5000)