game2005api/doc/VoiceController.py
2021-11-17 15:55:16 +08:00

30 lines
649 B
Python

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