type Driver struct {
Number int `json:"driver_number"`
FullName string `json:"full_name"`
Country string `json:"country_code"`
Avatar string `json:"avatar"`
TeamName string `json:"team_name"`
}
type Race struct {
Id int `json:"id"`
Year int `json:"year"`
StartDate time.Time `json:"date_start"`
CountryName string `json:"country_name"`
CircuitName string `json:"circuit_name"`
}