23 lines
562 B
Python
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()], '芯片列表']
|
|
]
|
|
},
|
|
]
|