game2006api/doc/Gun.py
aozhiwei 3908a36e53 1
2021-11-26 19:33:14 +08:00

23 lines
577 B
Python

# -*- coding: utf-8 -*-
import _common
class Gun(object):
def __init__(self):
self.apis = [
{
'name': 'skinList',
'desc': '获取枪械皮肤列表',
'group': 'Gun',
'url': 'webapp/index.php?c=Gun&a=skinList',
'params': [
_common.ReqHead(),
],
'response': [
_common.RspHead(),
['!skin_list', [_common.GunSkin()], '枪械皮肤列表']
]
},
]