22 lines
629 B
Python
22 lines
629 B
Python
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(),
|
|
['account_id', '', '账号id'],
|
|
['session_id', '', '会话id'],
|
|
],
|
|
'response': [
|
|
_common.RspHead(),
|
|
]
|
|
},
|
|
]
|