123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- from handlers.PitcherPanelHandler import*
- from handlers.ApiHandler import YgApiHandler
- from handlers.GitHookHandler import *
- from handlers.PublicAnalysisHandler import *
- from handlers.TaskHandler import *
- urls = [
- (r'/data/pitcher_panel/daily', PitcherPanelDaily),
- (r'/data/pitcher_panel/overview', PitcherPanelOverview),
- (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'/data/pitcher/trend', PitcherTrend),
-
- (r'/data/book/rank', BookRank),
- (r'/data/book/trend', BookTrend),
- (r'/data/book/overview', BookOverview),
- (r'/data/pitcher/overview', PitcherOverview),
- (r'/data/image/rank', ImageRank),
-
- (r'/data/boss_panel/summary', BossPanelSummary),
-
- (r'/task/src_book_info', SrcBookInfo),
-
- (r'/api/get_yangguang_data', YgApiHandler),
-
- (r'/api/git_hook/data_center', DataCenerHook),
- (r'/api/git_hook/qc_web', QcWebHook)
- ]
|