Remove unused data models for JSON parsing

This commit is contained in:
Sam Baumgarten
2015-03-24 20:54:10 -07:00
parent 7ec4da5bcc
commit 52c316014b

View File

@@ -17,18 +17,6 @@ import (
"strings"
)
type TeamListings struct {
NumberOfTeams int `json:"teamCountTotal"`
Teams []JSONTeam `json:"teams"`
}
type JSONTeam struct {
ShortName string `json:"nameShort"`
TeamNumber string `json:"teamNumber"`
LongName string `json:"nameFull"`
City string `json:"city"`
}
const wpaKeyLength = 8
var officialTeamInfoUrl = "https://frc-api.usfirst.org/api/v1.0/teams/2015"