parse atom:link

This commit is contained in:
Erik Unger 2013-12-17 17:44:03 +01:00
parent e1b5632521
commit f52007676f

7
rss.go
View file

@ -26,9 +26,16 @@ type ItemEnclosure struct {
Type string `xml:"type,attr"`
}
type AtomLink struct {
Href string `xml:"href,attr"`
Rel string `xml:"rel,attr"`
Type string `xml:"type,attr"`
}
type Item struct {
Title string `xml:"title"`
Link string `xml:"link"`
AtomLink AtomLink `xml:"http://www.w3.org/2005/Atom/ link"`
Comments string `xml:"comments"`
PubDate Date `xml:"pubDate"`
GUID string `xml:"guid"`