24 lines
648 B
Python
24 lines
648 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import _common
|
|
|
|
class GM(object):
|
|
|
|
def __init__(self):
|
|
self.apis = [
|
|
{
|
|
'name': 'exeCmd',
|
|
'desc': '执行gm指令(格式:".指令 参数1 参数2 ...", 查看指令帮助".help")',
|
|
'group': 'GM',
|
|
'url': 'webapp/index.php?c=GM&a=execCmd',
|
|
'params': [
|
|
_common.ReqHead(),
|
|
['cmd', '', '指令及参数']
|
|
],
|
|
'response': [
|
|
_common.RspHead(),
|
|
['text', '', '回显文字']
|
|
]
|
|
},
|
|
]
|