bozo-backend/home.py

7 lines
132 B
Python
Raw Normal View History

2023-06-03 21:32:42 -04:00
import main
import flask
2023-06-03 21:34:54 -04:00
@main.app.route("/", methods = ['GET'])
2023-06-03 21:32:42 -04:00
def home():
return (flask.render_template("home/index.html"))