From 3bedee0520e3ff23a68b9834292887d711efb3bc Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Fri, 25 Aug 2023 10:26:13 +0800 Subject: [PATCH] 1 --- doc/AccountVerify.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 doc/AccountVerify.py diff --git a/doc/AccountVerify.py b/doc/AccountVerify.py new file mode 100644 index 00000000..902da860 --- /dev/null +++ b/doc/AccountVerify.py @@ -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(), + ] + }, + ]