my-video-workflow/controller/view/main_blueprint.py
2022-04-15 12:26:43 +08:00

9 lines
189 B
Python

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