game2006api/doc/BcUser.py
aozhiwei 1a44f98abc 1
2022-03-30 14:43:12 +08:00

24 lines
595 B
Python

# -*- coding: utf-8 -*-
import _common
class BcUser(object):
def __init__(self):
self.apis = [
{
'name': 'info',
'desc': '获取用户信息',
'group': 'BcUser',
'url': 'webapp/index.php?c=BcUser&a=login',
'params': [
['account', '', '钱包账号'],
['token', '', 'token'],
],
'response': [
_common.RspHead(),
_common.BcUserInfo(),
]
},
]