24 lines
739 B
Python
24 lines
739 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import _common
|
|
|
|
class IM(object):
|
|
|
|
def __init__(self):
|
|
self.apis = [
|
|
{
|
|
'name': 'userInfo',
|
|
'desc': '执行gm指令(格式:".指令 参数1 参数2 ...", 查看指令帮助".help")',
|
|
'group': 'IM',
|
|
'url': 'webapp/index.php?c=IM&a=userInfo',
|
|
'params': [
|
|
_common.ReqHead(),
|
|
['target_id', '', '用户account_id(如果要获取自己的就传自己的account_id)']
|
|
],
|
|
'response': [
|
|
_common.RspHead(),
|
|
['info',_common.UserDetailInfo(), '用户信息(详细)'],
|
|
]
|
|
},
|
|
]
|