|
@@ -1,17 +1,22 @@
|
|
|
from handlers.PitcherPanelHandler import*
|
|
|
from handlers.ApiHandler import YgApiHandler
|
|
|
-from handlers.GitHookHandler import DataCenerHook
|
|
|
+from handlers.GitHookHandler import *
|
|
|
|
|
|
|
|
|
urls = [
|
|
|
(r'/data/pitcher_panel/channel', PitcherPanelChannel),
|
|
|
- (r'/data/pitcher_panel/daily', PitcherPanelDaily),
|
|
|
+ (r'/data/pitcher_panel/daily', PitcherPanelDaily),
|
|
|
(r'/data/pitcher_panel/overview', PitcherPanelOverview),
|
|
|
- (r'/api/get_yangguang_data',YgApiHandler),
|
|
|
(r'/data/channel_stat/overview',ChannelOverview),
|
|
|
(r'/data/channel_stat/again_order_trend',ChannelAgainOrderTrend),
|
|
|
(r'/data/channel_stat/active',ChannelActive),
|
|
|
(r'/data/channel_stat/order_trend',ChannelOrderTrend),
|
|
|
(r'/data/channel_stat/channel',ChannelSummary),
|
|
|
- (r'/api/git_hook/data_center',DataCenerHook)
|
|
|
+
|
|
|
+
|
|
|
+ (r'/api/get_yangguang_data', YgApiHandler),
|
|
|
+
|
|
|
+
|
|
|
+ (r'/api/git_hook/data_center',DataCenerHook),
|
|
|
+ (r'/api/git_hook/qc_web',QcWebHook),
|
|
|
]
|