We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 60037c6 + 60c3ca4 commit 4b26513Copy full SHA for 4b26513
services/search/models.go
@@ -9,6 +9,13 @@ type City struct {
9
Longitude float64 `json:"longitude"`
10
}
11
Description string `json:"description"`
12
+ Metadata struct {
13
+ CityDetail struct {
14
+ CityId int64 `json:"city_id"`
15
+ DistrictId int64 `json:"district_id"`
16
+ HexagonId int64 `json:"hexagon_id"`
17
+ } `json:"city_detail"`
18
+ } `json:"metadata"`
19
20
21
// Result is the struct for search candidate of a place
version/version.go
@@ -3,7 +3,7 @@ package version
3
import "fmt"
4
5
const (
6
- Version = "v0.9.22"
+ Version = "v0.9.24"
7
UserAgentHeader = "User-Agent"
8
)
0 commit comments