aozhiwei 8aa3b635c4 1
2021-12-08 15:14:17 +08:00

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', '', '回显文字']
]
},
]