game2006api/doc/OutAppPlanet.py
aozhiwei 9669cf6020 1
2023-08-30 19:32:17 +08:00

26 lines
716 B
Python

# -*- coding: utf-8 -*-
import _common
class OutAppPlanet(object):
def __init__(self):
self.apis = [
{
'name': 'buy',
'desc': '购买星球',
'group': 'OutAppPlanet',
'url': 'webapp/index.php?c=OutAppPlanet&a=buy',
'params': [
['net_id', '', '链id'],
['address', '', '钱包地址'],
['num', 0, '数量'],
],
'response': [
_common.RspHead(),
['trans_id', '', '事务id'],
['!params', [''], '合约参数列表'],
]
},
]