game2006api/doc/BcUser.py
aozhiwei 7d2f2168b0 1
2022-03-25 17:15:36 +08:00

23 lines
559 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(),
],
'response': [
_common.RspHead(),
['info',_common.BcUserInfo(), '用户信息']
]
},
]