game2005api/doc/Gun.py
aozhiwei 81e5261dc0 1
2021-11-26 17:55:04 +08:00

23 lines
574 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, '枪械皮肤列表']
]
},
]