diff --git a/doc/ComputingPower.py b/doc/ComputingPower.py new file mode 100644 index 00000000..5ed0a556 --- /dev/null +++ b/doc/ComputingPower.py @@ -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()], '物品列表'] + ] + }, + ]