32 lines
678 B
Python
32 lines
678 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import _common
|
|
|
|
class Voice(object):
|
|
|
|
def __init__(self):
|
|
self.apis_ = [
|
|
{
|
|
'desc': 'upload',
|
|
'group': 'Voice',
|
|
'url': 'webapp/index.php?c=Voice&a=upload',
|
|
'params': [
|
|
_common.ReqHead(),
|
|
],
|
|
'response': [
|
|
_common.RspHead(),
|
|
]
|
|
},
|
|
{
|
|
'desc': 'download',
|
|
'group': 'Voice',
|
|
'url': 'webapp/index.php?c=Voice&a=download',
|
|
'params': [
|
|
_common.ReqHead(),
|
|
],
|
|
'response': [
|
|
_common.RspHead(),
|
|
]
|
|
},
|
|
]
|