You've already forked my-video-workflow
初次提交
This commit is contained in:
8
controller/view/main_blueprint.py
Normal file
8
controller/view/main_blueprint.py
Normal 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")
|
Reference in New Issue
Block a user