MCPcopy Create free account
hub / github.com/goinaction/code / item

Struct item

chapter2/sample/matchers/rss.go:17–25  ·  view source on GitHub ↗

item defines the fields associated with the item tag in the rss document.

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected