Files
pear-admin-flask/plugins/helloworld/main.py
T
2023-02-10 23:05:54 +08:00

13 lines
354 B
Python

from applications.dev import *
from flask import render_template, Blueprint
# 创建蓝图
helloworld_blueprint = Blueprint('hello_world', __name__, template_folder='templates', static_folder="static",
url_prefix="/hello_world")
@helloworld_blueprint.route("/")
def index():
return render_template("helloworld_index.html")