game2005api/doc/User.py
aozhiwei 3fe90b503f 1
2021-11-25 10:42:24 +08:00

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(), '用户信息']
]
},
]