game2005api/doc/Ranking.py
aozhiwei 8232de31ab 1
2021-12-06 14:30:03 +08:00

24 lines
651 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# -*- coding: utf-8 -*-
import _common
class Ranking(object):
def __init__(self):
self.apis = [
{
'name': 'rankingList',
'desc': '获取排行榜',
'group': 'Ranking',
'url': 'webapp/index.php?c=Ranking&a=rankingList',
'params': [
_common.ReqHead(),
['type', 0, '排行榜类型 1积分榜']
],
'response': [
_common.RspHead(),
['ranking_list', _common.RankingList(), '排行榜数据']
]
}
]