Update app.py

main
Arsenijs Ļu 2024-04-27 20:06:40 +00:00
parent 585e6b27cc
commit 0f0650913b
1 changed files with 8 additions and 0 deletions

8
app.py
View File

@ -11,5 +11,13 @@ def index():
def about():
return render_template('about.html')
@app.route("/game")
def game():
return render_template('game.html')
@app.route("/link")
def game():
return render_template('link.html')
if __name__ == "__main__":
app.run(debug=True)