初次提交

This commit is contained in:
2022-04-15 12:26:43 +08:00
commit 09b2956573
30 changed files with 952 additions and 0 deletions

View File

@ -0,0 +1,8 @@
from flask import Blueprint, render_template
blueprint = Blueprint("view_main", __name__, url_prefix="/")
@blueprint.route("/")
def main_page():
return render_template("index.html")