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