Update app.py

main
Arsenijs Ļu 2024-04-28 12:43:59 +00:00
parent d1fa60d0bc
commit 8696d7a57f
1 changed files with 5 additions and 1 deletions

6
app.py
View File

@ -16,8 +16,12 @@ def game():
return render_template('game.html')
@app.route("/support")
def link():
def support():
return render_template('support.html')
@app.route("/updates")
def updates():
return render_template('updates.html')
if __name__ == "__main__":
app.run(debug=True)