bozo-backend/home.py

8 lines
168 B
Python
Raw Normal View History

2023-06-03 21:32:42 -04:00
import flask
2023-06-04 06:51:13 -04:00
home = flask.Blueprint("home", __name__, template_folder="templates")
@home.route("/")
def show():
2023-06-03 21:32:42 -04:00
return (flask.render_template("home/index.html"))