24 lines
603 B
Python
24 lines
603 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import _common
|
|
|
|
class EventRanking(object):
|
|
|
|
def __init__(self):
|
|
self.apis = [
|
|
{
|
|
'name': 'eventRankingList',
|
|
'desc': '排行活动列表',
|
|
'group': 'History',
|
|
'url': 'webapp/index.php?c=Battle&a=eventRankingList',
|
|
'params': [
|
|
_common.ReqHead(),
|
|
],
|
|
'response': [
|
|
_common.RspHead(),
|
|
['!list', [_common.EventRankingList()], '活动列表'],
|
|
]
|
|
},
|
|
|
|
]
|