24 lines
595 B
Python
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(),
|
|
]
|
|
},
|
|
]
|