7 lines
146 B
Go
Raw Normal View History

2024-10-24 15:26:09 +08:00
package location
type Poi struct {
2024-10-24 15:30:34 +08:00
Latitude float64 `form:"latitude" json:"latitude"`
2024-10-24 15:26:09 +08:00
Longitude float64 `form:"longitude" json:"longitude"`
}