基本构建

This commit is contained in:
mkg
2021-03-18 22:59:02 +08:00
parent 3cf62d4305
commit d2a2b35317
638 changed files with 198871 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
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')