Update app.py
parent
585e6b27cc
commit
0f0650913b
8
app.py
8
app.py
|
@ -11,5 +11,13 @@ def index():
|
||||||
def about():
|
def about():
|
||||||
return render_template('about.html')
|
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__":
|
if __name__ == "__main__":
|
||||||
app.run(debug=True)
|
app.run(debug=True)
|
Loading…
Reference in New Issue