game2005api/doc/NPlayer.py
2021-11-17 16:37:19 +08:00

32 lines
701 B
Python

# -*- coding: utf-8 -*-
import _common
class NPlayer(object):
def __init__(self):
self.apis = [
{
'desc': 'getGunInfo',
'group': 'NPlayer',
'url': 'webapp/index.php?c=NPlayer&a=getGunInfo',
'params': [
_common.ReqHead(),
],
'response': [
_common.RspHead(),
]
},
{
'desc': 'getPlayerLv',
'group': 'NPlayer',
'url': 'webapp/index.php?c=NPlayer&a=getPlayerLv',
'params': [
_common.ReqHead(),
],
'response': [
_common.RspHead(),
]
},
]