26 lines
844 B
Python
26 lines
844 B
Python
import _common
|
|
|
|
class AAGameLog(object):
|
|
|
|
def __init__(self):
|
|
self.apis = [
|
|
{
|
|
'name': 'customReport',
|
|
'desc': '上报自定义日志',
|
|
'group': '!AAGameLog',
|
|
'url': 'https://gamelog-test.kingsome.cn/webapp/index.php?c=GameLog&a=customReport',
|
|
'params': [
|
|
_common.ReqHead(),
|
|
['gameid', '', '游戏id'],
|
|
['channel', '', '渠道编号'],
|
|
['event_name', '', '事件名'],
|
|
['account_id', '', '账号Id'],
|
|
['session_id', '', '会话id'],
|
|
['localuuid', '', '本地唯一Id'],
|
|
],
|
|
'response': [
|
|
_common.RspHead(),
|
|
]
|
|
},
|
|
]
|