Channel defines the fields associated with the channel tag in the buoy RSS document.
| 101 | // Channel defines the fields associated with the channel tag in |
| 102 | // the buoy RSS document. |
| 103 | type Channel struct { |
| 104 | XMLName xml.Name `xml:"channel"` |
| 105 | Title string `xml:"title"` |
| 106 | Description string `xml:"description"` |
| 107 | Link string `xml:"link"` |
| 108 | PubDate string `xml:"pubDate"` |
| 109 | Items []Item `xml:"item"` |
| 110 | } |
| 111 | |
| 112 | // Document defines the fields associated with the buoy RSS document. |
| 113 | type Document struct { |
nothing calls this directly
no outgoing calls
no test coverage detected