2019-07-17 16:36:59 +08:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
from application import app
|
|
|
|
|
from web.controllers.index import route_index
|
2019-07-18 08:59:26 +08:00
|
|
|
from web.controllers.user.User import route_user
|
|
|
|
|
from web.controllers.static import route_static
|
2019-07-17 16:36:59 +08:00
|
|
|
|
|
|
|
|
app.register_blueprint( route_index,url_prefix = "/" )
|
2019-07-18 08:59:26 +08:00
|
|
|
app.register_blueprint( route_user,url_prefix = "/user" )
|
|
|
|
|
app.register_blueprint( route_static,url_prefix = "/static" )
|