# -*- 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(), ] }, ]