7 lines
146 B
Go
Raw Normal View History

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