13 lines
180 B
Python
13 lines
180 B
Python
from applications.view.index.index import index_bp
|
|
|
|
from . import index
|
|
|
|
|
|
def register_index_views(app):
|
|
"""
|
|
初始化蓝图
|
|
|
|
"""
|
|
|
|
app.register_blueprint(index_bp)
|