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