diff --git a/doc/AAStat.py b/doc/AAStat.py new file mode 100644 index 00000000..bd8e61cf --- /dev/null +++ b/doc/AAStat.py @@ -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(), + ] + }, + ]