game2005api/doc/NShop.py
aozhiwei 6a98515527 1
2021-11-18 20:00:55 +08:00

32 lines
685 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(),
]
},
]