game2005api/doc/Bag.py
aozhiwei 81e5261dc0 1
2021-11-26 17:55:04 +08:00

23 lines
565 B
Python

# -*- coding: utf-8 -*-
import _common
class Bag(object):
def __init__(self):
self.apis_ = [
{
'name': 'itemList',
'desc': '获取背包物品列表',
'group': 'Bag',
'url': 'webapp/index.php?c=Bag&a=itemList',
'params': [
_common.ReqHead(),
],
'response': [
_common.RspHead(),
['!item_list', _common.Item, '物品列表']
]
},
]