mirror of
https://github.com/Jguer/yay.git
synced 2024-11-06 17:17:22 +01:00
Collapsing rss struct
This commit is contained in:
parent
976876961b
commit
2161dace3f
32
print.go
32
print.go
@ -402,25 +402,21 @@ outer:
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
type item struct {
|
|
||||||
Title string `xml:"title"`
|
|
||||||
Link string `xml:"link"`
|
|
||||||
Description string `xml:"description"`
|
|
||||||
PubDate string `xml:"pubDate"`
|
|
||||||
Creator string `xml:"dc:creator"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type channel struct {
|
|
||||||
Title string `xml:"title"`
|
|
||||||
Link string `xml:"link"`
|
|
||||||
Description string `xml:"description"`
|
|
||||||
Language string `xml:"language"`
|
|
||||||
Lastbuilddate string `xml:"lastbuilddate"`
|
|
||||||
Item []item `xml:"item"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type rss struct {
|
type rss struct {
|
||||||
Channel channel `xml:"channel"`
|
Channel struct {
|
||||||
|
Title string `xml:"title"`
|
||||||
|
Link string `xml:"link"`
|
||||||
|
Description string `xml:"description"`
|
||||||
|
Language string `xml:"language"`
|
||||||
|
Lastbuilddate string `xml:"lastbuilddate"`
|
||||||
|
Item []struct {
|
||||||
|
Title string `xml:"title"`
|
||||||
|
Link string `xml:"link"`
|
||||||
|
Description string `xml:"description"`
|
||||||
|
PubDate string `xml:"pubDate"`
|
||||||
|
Creator string `xml:"dc:creator"`
|
||||||
|
} `xml:"item"`
|
||||||
|
} `xml:"channel"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func printNewsFeed() error {
|
func printNewsFeed() error {
|
||||||
|
Loading…
Reference in New Issue
Block a user