Update app.py

main
Arsenijs Ļu 2024-04-28 11:43:35 +00:00
parent d29ca1219f
commit 82865c5b67
1 changed files with 3 additions and 3 deletions

6
app.py
View File

@ -15,9 +15,9 @@ def about():
def game(): def game():
return render_template('game.html') return render_template('game.html')
@app.route("/link") @app.route("/support")
def game(): def link():
return render_template('link.html') return render_template('support.html')
if __name__ == "__main__": if __name__ == "__main__":
app.run(debug=True) app.run(debug=True)