File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -2,12 +2,12 @@ package search
22
33// City is the struct for city candidate in city search
44type City struct {
5- ID int `json:"id"`
6- Name string `json:"name"`
7- Cetroid struct {
8- Latitude float64 `json:"latitude"`
9- Longitude float64 `json:"longitude"`
10- }
5+ ID int `json:"id"`
6+ Name string `json:"name"`
7+ Centroid struct {
8+ Latitude string `json:"latitude"`
9+ Longitude string `json:"longitude"`
10+ } `json:"centroid"`
1111 Description string `json:"description"`
1212 Metadata struct {
1313 CityDetail struct {
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package version
33import "fmt"
44
55const (
6- Version = "v0.9.25 "
6+ Version = "v0.9.26 "
77 UserAgentHeader = "User-Agent"
88)
99
You can’t perform that action at this time.
0 commit comments