This commit is contained in:
aozhiwei 2022-04-01 15:51:26 +08:00
parent a2cb2bbc06
commit 48d8d96970

View File

@ -5,6 +5,23 @@ import _common
class Market(object):
def __init__(self):
self.internalApis = [
{
'name': 'tokenAuth',
'desc': 'tokenAuth',
'group': 'Market',
'url': 'webapp/index.php?c=Market&a=tokenAuth',
'params': [
['account', '', '钱包账号'],
['token', '', 'token'],
['net_id', '', '网络id'],
],
'response': [
_common.RspHead(),
['account', '', 'account'],
]
},
]
self.apis = [
{
'name': 'getNonce',