game2006api/doc/Voice.py
aozhiwei c5bc98d7b1 1
2021-11-25 10:27:20 +08:00

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