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