game2006api/doc/Chip.py
aozhiwei f8d29ae26d 1
2022-01-04 19:45:53 +08:00

23 lines
562 B
Python

# -*- coding: utf-8 -*-
import _common
class Chip(object):
def __init__(self):
self.apis = [
{
'name': 'chipList',
'desc': '获取芯片列表',
'group': 'Gun',
'url': 'webapp/index.php?c=Gun&a=chipList',
'params': [
_common.ReqHead(),
],
'response': [
_common.RspHead(),
['!chip_list', [_common.Gun()], '芯片列表']
]
},
]