This commit is contained in:
aozhiwei 2024-05-14 19:41:13 +08:00
parent 49641c12b2
commit c40ff165f7

21
doc/AAStat.py Normal file
View File

@ -0,0 +1,21 @@
import _common
class AAStat(object):
def __init__(self):
self.apis = [
{
'name': 'updateSession',
'desc': '短链接游戏心跳更新',
'group': '!AAStat',
'url': 'https://stat-test.kingsome.cn/webapp/index.php?c=Stat&a=updateSession',
'params': [
_common.ReqHead(),
['acount_id', '', '账号id'],
['session_id', '', '会话id'],
],
'response': [
_common.RspHead(),
]
},
]