2 Star 9 Fork 6

千叶千影 / 微信小程序订餐系统

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
www.py 1.29 KB
一键复制 编辑 原始数据 按行查看 历史
from application import app
from web.controllers.index import route_index
from web.controllers.user.User import router_user
from web.controllers.account.Account import route_account
from web.controllers.finance.Finance import route_finance
from web.controllers.food.Food import route_food
from web.controllers.member.Member import route_member
from web.controllers.statistics.Statistics import route_statistics
from web.controllers.api import route_api
from web.controllers.upload.Upload import route_upload
from web.controllers.chart.Chart import route_chart
# 统一资源拦截器
from web.interceptor.ErrorInterceptor import *
from web.interceptor.AuthInterceptor import *
from web.interceptor.ApiInterceptor import *
# 统一蓝图注册
app.register_blueprint(route_index, url_prefix='/')
app.register_blueprint(router_user, url_prefix='/user')
app.register_blueprint(route_account, url_prefix='/account')
app.register_blueprint(route_finance, url_prefix='/finance')
app.register_blueprint(route_food, url_prefix='/food')
app.register_blueprint(route_member, url_prefix='/member')
app.register_blueprint(route_statistics, url_prefix='/stat')
app.register_blueprint(route_api, url_prefix='/api')
app.register_blueprint(route_upload, url_prefix='/upload')
app.register_blueprint(route_chart, url_prefix='/chart')
Python
1
https://gitee.com/liu928011/mini-program.git
git@gitee.com:liu928011/mini-program.git
liu928011
mini-program
微信小程序订餐系统
master

搜索帮助