urls.py 973 B

1234567891011121314151617181920212223
  1. from handlers.PitcherPanelHandler import*
  2. from handlers.ApiHandler import YgApiHandler
  3. from handlers.GitHookHandler import *
  4. urls = [
  5. (r'/data/pitcher_panel/channel', PitcherPanelChannel), # 公众号汇总
  6. (r'/data/pitcher_panel/daily', PitcherPanelDaily), # 日期汇总
  7. (r'/data/pitcher_panel/overview', PitcherPanelOverview), # 投手今天概况
  8. (r'/data/channel_stat/overview',ChannelOverview), # 公众号广告投放数据
  9. (r'/data/channel_stat/again_order_trend',ChannelAgainOrderTrend), # 公众号复冲趋势
  10. (r'/data/channel_stat/active',ChannelActive), # 公众号激活数据
  11. (r'/data/channel_stat/order_trend',ChannelOrderTrend), # 公众号趋势
  12. (r'/data/channel_stat/channel',ChannelSummary), # 公众号总数据
  13. # 外部接口
  14. (r'/api/get_yangguang_data', YgApiHandler), # 阳光订单回调接口
  15. # web hook
  16. (r'/api/git_hook/data_center',DataCenerHook),
  17. (r'/api/git_hook/qc_web',QcWebHook)
  18. ]