package cybersecurity // OsintLocation represents a geographic location of interest in an OSINT investigation. type OsintLocation struct { Lat float64 `json:"lat"` Lon float64 `json:"lon"` Address string `json:"address"` Country string `json:"country"` City string `json:"city"` }