This commit is contained in:
aozhiwei 2023-08-15 16:05:23 +08:00
parent f7e9580de0
commit 82a1d63c8d

22
doc/ComputingPower.py Normal file
View File

@ -0,0 +1,22 @@
# -*- coding: utf-8 -*-
import _common
class ComputingPower(object):
def __init__(self):
self.apis = [
{
'name': 'info',
'desc': 'huoq ',
'group': 'ComputingPower',
'url': 'webapp/index.php?c=ComputingPower&a=info',
'params': [
_common.ReqHead(),
],
'response': [
_common.RspHead(),
['!item_list', [_common.Item()], '物品列表']
]
},
]