fix: home url is now /

This commit is contained in:
starnakin 2023-06-04 03:34:54 +02:00
parent 9b204490eb
commit 514fb70f06

View File

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