fix: uri / -> /panel

This commit is contained in:
starnakin 2023-06-08 22:33:41 +02:00
parent 1381bc2d0b
commit 3131605a57

7
panel.py Normal file
View File

@ -0,0 +1,7 @@
import flask
page = flask.Blueprint("panel", __name__, template_folder="templates")
@page.route("/panel")
def show():
return (flask.render_template("panel/panel.html"))