package core // Location represents a geographic location of interest. type Location struct { Lat float64 `json:"lat"` Lon float64 `json:"lon"` Address string `json:"address"` Country string `json:"country"` City string `json:"city"` }