python学习

This commit is contained in:
2019-07-18 08:59:26 +08:00
parent 8ebdee9a2c
commit 7bd7a50cff
347 changed files with 149728 additions and 82 deletions

4
www.py
View File

@@ -1,5 +1,9 @@
# -*- coding: utf-8 -*-
from application import app
from web.controllers.index import route_index
from web.controllers.user.User import route_user
from web.controllers.static import route_static
app.register_blueprint( route_index,url_prefix = "/" )
app.register_blueprint( route_user,url_prefix = "/user" )
app.register_blueprint( route_static,url_prefix = "/static" )