python学习
This commit is contained in:
2
www.py
2
www.py
@@ -20,6 +20,7 @@ from web.controllers.food.Food import route_food
|
||||
from web.controllers.member.Member import route_member
|
||||
from web.controllers.stat.Stat import route_stat
|
||||
from web.controllers.api import route_api
|
||||
from web.controllers.upload.Upload import route_upload
|
||||
app.register_blueprint( route_index,url_prefix = "/" )
|
||||
app.register_blueprint( route_user,url_prefix = "/user" )
|
||||
app.register_blueprint( route_static,url_prefix = "/static" )
|
||||
@@ -29,3 +30,4 @@ app.register_blueprint(route_member,url_prefix="/member")
|
||||
app.register_blueprint(route_food,url_prefix="/food")
|
||||
app.register_blueprint(route_stat,url_prefix="/stat")
|
||||
app.register_blueprint( route_api,url_prefix = "/api" )
|
||||
app.register_blueprint( route_upload,url_prefix = "/upload" )
|
||||
|
||||
Reference in New Issue
Block a user