var RootCmd = &cobra.Command{
Use: "euro2016",
Short: "UEFA Euro 2016 CLI",
Long: "A client to follow UEFA Euro 2016.\n" +
"Display competition schedule, live results, teams and rankings from the terminal.",
}
type Fixture struct {
AwayTeam string `json:"awayTeamName"`
Date time.Time `json:"date"`
HomeTeam string `json:"homeTeamName"`
Matchday uint8 `json:"matchday"`
Result Result `json:"result"`
Status string `json:"status"`
}