22 lines
472 B
Python
22 lines
472 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import _common
|
|
|
|
class User(object):
|
|
|
|
def __init__(self):
|
|
self.apis = [
|
|
{
|
|
'desc': '获取用户信息信息info',
|
|
'group': 'User',
|
|
'url': 'webapp/index.php?c=User&a=info',
|
|
'params': [
|
|
_common.ReqHead(),
|
|
],
|
|
'response': [
|
|
_common.RspHead(),
|
|
['info',_common.UserInfo(), '用户信息']
|
|
]
|
|
},
|
|
]
|