Update index route response to include test message
Some checks failed
Deploy to Linode / deploy (push) Has been cancelled

This commit is contained in:
Dominik Krenn 2025-06-11 08:14:49 +02:00
parent 9b6b1b7b27
commit 02d0f11dfb

2
app.py
View File

@ -4,7 +4,7 @@ app = Flask(__name__)
@app.route('/')
def index():
return "Hello, World!"
return "Hello, World! Test :3"
@app.route('/test')
def test():