game2006api/doc/BcUser.py
aozhiwei 54930f11a5 1
2022-03-27 10:08:16 +08:00

24 lines
619 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(),
['info',_common.BcUserInfo(), '用户信息']
]
},
]