bozo-backend/home.py
2023-06-04 03:34:54 +02:00

7 lines
132 B
Python

import main
import flask
@main.app.route("/", methods = ['GET'])
def home():
return (flask.render_template("home/index.html"))