game2006api/doc/EventRanking.py
2022-11-16 11:36:19 +08:00

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()], '活动列表'],
]
},
]