1 Star 8 Fork 6

拒海/rebate

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
webapp.py 598 Bytes
一键复制 编辑 原始数据 按行查看 历史
张彦 提交于 2021-06-11 11:33 . initiate
# -*- coding: utf-8 -*-
import logging
from flask import Flask, render_template
from lib import logging_config
from jd.web import jda, jdt
from surl.web import surl
from wx.web import wxa
from sche.tasks import start_sche
app = Flask(__name__)
app.register_blueprint(jdt)
app.register_blueprint(jda)
app.register_blueprint(wxa)
app.register_blueprint(surl)
start_sche(app)
log = logging.getLogger('refusea.webapp')
@app.route('/')
def index():
return render_template('welcome.jinja2')
if __name__ == '__main__':
log.debug('webapp start...')
app.run(port=8080, debug=True)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/refusea/rebate.git
[email protected]:refusea/rebate.git
refusea
rebate
rebate
master

搜索帮助