game2005api/doc/Shop.py
2021-11-29 13:05:00 +08:00

25 lines
643 B
Python

# -*- coding: utf-8 -*-
import _common
class Shop(object):
def __init__(self):
self.apis = [
{
'name': 'buy',
'desc': '购买英雄',
'group': 'Shop',
'url': 'webapp/index.php?c=Shop&a=buy',
'params': [
_common.ReqHead(),
['shop_id', '', '商店id'],
['goods_id', '', '商品id'],
],
'response': [
_common.RspHead(),
['award', _common.Award(), '奖励信息'],
]
},
]