Compare commits

..

No commits in common. "4dd7e3a49f27fc3cdf38daa8fc7167c3e6ddad56" and "0fd838c4e06b62a92df688cd97fb67896f9b4ffe" have entirely different histories.

1 changed files with 11 additions and 19 deletions

View File

@ -32,13 +32,6 @@ type (
Name string `json:"name"`
Code int `json:"code"`
Slug string `json:"slug"`
Location *GEOLocation `json:"location"`
}
// GEOLocation ...
GEOLocation struct {
Type string `bson:"type" json:"type"`
Coordinates []float64 `bson:"coordinates" json:"coordinates"`
}
// LocationProvinceResponse ...
@ -90,6 +83,5 @@ type (
Code int `json:"code"`
DistrictCode int `json:"districtCode"`
ProvinceCode int `json:"provinceCode"`
Location *GEOLocation `json:"location"`
}
)