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

20 lines
407 B
Python

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