Remove game-specific scoring

This commit is contained in:
Ken Schenke
2020-04-14 19:38:14 -05:00
parent 53caa27208
commit f075b7bb8d
59 changed files with 298 additions and 3004 deletions

2
model/test_helpers.go Normal file → Executable file
View File

@@ -27,8 +27,6 @@ func BuildTestMatchResult(matchId int, playNumber int) *MatchResult {
matchResult := &MatchResult{MatchId: matchId, PlayNumber: playNumber, MatchType: "qualification"}
matchResult.RedScore = game.TestScore1()
matchResult.BlueScore = game.TestScore2()
matchResult.RedCards = map[string]string{"1868": "yellow"}
matchResult.BlueCards = map[string]string{}
return matchResult
}