/**
 * 判断赛程版本，老赛程为-1，新赛程为0
 * @param {*} gameInfo
 * @returns
 */
export function judgeScheVersion(gameInfo: any) {
  const groupType = gameInfo?.group_type;
  if (groupType >= 7) {
    return 0;
  }
  return -1;
}

