Update app.py
parent
d1fa60d0bc
commit
8696d7a57f
6
app.py
6
app.py
|
@ -16,8 +16,12 @@ def game():
|
||||||
return render_template('game.html')
|
return render_template('game.html')
|
||||||
|
|
||||||
@app.route("/support")
|
@app.route("/support")
|
||||||
def link():
|
def support():
|
||||||
return render_template('support.html')
|
return render_template('support.html')
|
||||||
|
|
||||||
|
@app.route("/updates")
|
||||||
|
def updates():
|
||||||
|
return render_template('updates.html')
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
app.run(debug=True)
|
app.run(debug=True)
|
Loading…
Reference in New Issue