game2006api/doc/Other.py
2023-04-13 19:10:53 +08:00

27 lines
882 B
Python

import _common
class Other(object):
def __init__(self):
self.apis = [
{
'name': 'tag',
'desc': '红点提示',
'group': 'Other',
'url': 'webapp/index.php?c=Other&a=tag',
'params': [
_common.ReqHead(),
['param', '0', '1:任务 2:碎片'],
],
'response': [
_common.RspHead(),
['!data', [
['mission',0,'任务: 1 提示, 0 不提示'],
['piece',[
['hero',0,'英雄碎片: 1 提示, 0 不提示'],
['gun',0,'枪械碎片: 1 提示, 0 不提示'],
],'碎片']
], '提示信息'],
]
}
]