From 82a1d63c8dd77b15019689929bb9eff1c58f7722 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Tue, 15 Aug 2023 16:05:23 +0800 Subject: [PATCH] 1 --- doc/ComputingPower.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 doc/ComputingPower.py 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()], '物品列表'] + ] + }, + ]