package hackernews type Story struct { By string `json:"by"` Descendants int `json:"descendants"` ID int `json:"id"` Kids []int `json:"kids"` Score int `json:"score"` Time int `json:"time"` Title string `json:"title"` Type string `json:"type"` URL string `json:"url"` }