This commit is contained in:
aozhiwei 2023-08-25 10:26:13 +08:00
parent 255d38f47b
commit 3bedee0520

25
doc/AccountVerify.py Normal file
View File

@ -0,0 +1,25 @@
# -*- coding: utf-8 -*-
import _common
class AccountVerify(object):
def __init__(self):
self.apis = [
{
'method': 'GET',
'name': 'canBind',
'desc': '是否可绑定',
'group': 'AccountVerify',
'url': 'webapp/index.php?c=Battle&a=canBind',
'params': [
_common.ReqHead(),
['guest_account', '', 'guest账号'],
['target_plat', '', '绑定的目标账号渠道'],
['target_account', '', '绑定的目标账号'],
],
'response': [
_common.RspHead(),
]
},
]