Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Entry ¶
type Entry struct {
Title string `xml:"title"`
ID string `xml:"id"`
Updated string `xml:"updated"`
Content Content `xml:"content"`
}
Entry is an item within a Feed.
type Feed ¶
type Feed struct {
XMLName xml.Name `xml:"feed"`
Xmlns string `xml:"xmlns,attr"`
ID string `xml:"id"`
Title string `xml:"title"`
Updated string `xml:"updated"`
Author Person `xml:"author"`
Link Link `xml:"link"`
Entries []Entry `xml:"entry"`
}
Feed represents an Atom feed.
Click to show internal directories.
Click to hide internal directories.