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