package
Version:
v0.14.1
Opens a new window with list of versions in this module.
Published: Jan 7, 2025
License: MIT
Opens a new window with license information.
Imports: 4
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Channel struct {
XMLName xml.Name `xml:"channel"`
Title string `xml:"title"`
Link string `xml:"link"`
Description string `xml:"description"`
Items []Item `xml:"item"`
}
type Feed struct {
XMLName xml.Name `xml:"rss"`
Version string `xml:"version,attr"`
Channels []Channel `xml:"channel"`
}
type Item struct {
XMLName xml.Name `xml:"item"`
GUID string `xml:"guid"`
PubDate Time `xml:"pubDate"`
Title string `xml:"title"`
Link string `xml:"link"`
Description string `xml:"description"`
}
Time represents a RFC2822 time, as used by RSS.
Source Files
¶
Click to show internal directories.
Click to hide internal directories.