game2006api/doc/BcUser.py
aozhiwei 6ded3407fe 1
2022-03-25 17:16:17 +08:00

25 lines
656 B
Python

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