# -*- coding: utf-8 -*- import _common class Match(object): def __init__(self): self.apis = [ { 'name': 'getMatchInfo', 'desc': '获取匹配信息', 'group': 'Match', 'url': 'webapp/index.php?c=Match&a=getMatchInfo', 'params': [ _common.ReqHead(), ['team_uuid', '', '队伍唯一id'], ], 'response': [ _common.RspHead(), ['info', _common.MatchInfo(), '队伍唯一id'], ] } ]