StarfallBot/starfall/web/home.py

9 lines
184 B
Python

from flask import Blueprint, render_template
home_blueprint: Blueprint = Blueprint("main", __name__)
@home_blueprint.route("/")
def index():
return render_template("home.html")