item defines the fields associated with the item tag in the rss document.
| 15 | // item defines the fields associated with the item tag |
| 16 | // in the rss document. |
| 17 | item struct { |
| 18 | XMLName xml.Name `xml:"item"` |
| 19 | PubDate string `xml:"pubDate"` |
| 20 | Title string `xml:"title"` |
| 21 | Description string `xml:"description"` |
| 22 | Link string `xml:"link"` |
| 23 | GUID string `xml:"guid"` |
| 24 | GeoRssPoint string `xml:"georss:point"` |
| 25 | } |
| 26 | |
| 27 | // image defines the fields associated with the image tag |
| 28 | // in the rss document. |
nothing calls this directly
no outgoing calls
no test coverage detected