game2005api/doc/NShop.py
aozhiwei c5bc98d7b1 1
2021-11-25 10:27:20 +08:00

32 lines
686 B
Python

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