Merge branch 'v2' into pr_5

# Conflicts:
#	applications/view/__init__.py
This commit is contained in:
mkg
2021-06-13 16:14:23 +08:00
33 changed files with 191 additions and 167 deletions
+1 -3
View File
@@ -1,6 +1,4 @@
from flask import Blueprint
index_bp = Blueprint('Index', __name__, url_prefix='/')
from applications.view.index.index import index_bp
from . import index
+2 -2
View File
@@ -1,6 +1,6 @@
from flask import render_template
from flask import render_template, Blueprint
from . import index_bp
index_bp = Blueprint('Index', __name__, url_prefix='/')
@index_bp.route('/')