Files
pear-admin-flask/applications/views/index/index.py
T
2021-03-18 22:59:02 +08:00

12 lines
252 B
Python

from flask import Blueprint,render_template
index_index = Blueprint('Index', __name__, url_prefix='/')
from flask_marshmallow import Marshmallow
ma = Marshmallow()
@index_index.route('/')
def index():
return render_template('index/index.html')