From 084a224b1f09024cde9f8898eb1cf32718ea965b Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Tue, 14 May 2024 17:49:45 +0800 Subject: [PATCH] 1 --- doc/AAGameLog.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 doc/AAGameLog.py diff --git a/doc/AAGameLog.py b/doc/AAGameLog.py new file mode 100644 index 00000000..18ded7f3 --- /dev/null +++ b/doc/AAGameLog.py @@ -0,0 +1,25 @@ +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(), + ] + }, + ]