bozo-backend/home.py
2023-06-04 12:51:13 +02:00

8 lines
168 B
Python

import flask
home = flask.Blueprint("home", __name__, template_folder="templates")
@home.route("/")
def show():
return (flask.render_template("home/index.html"))