2009-11-23 12:46:12 +00:00
|
|
|
package feeder
|
|
|
|
|
|
|
|
type Channel struct {
|
2010-05-23 14:21:30 +00:00
|
|
|
Title string
|
|
|
|
Links []Link
|
|
|
|
Description string
|
|
|
|
Language string
|
|
|
|
Copyright string
|
|
|
|
ManagingEditor string
|
|
|
|
WebMaster string
|
|
|
|
PubDate string
|
|
|
|
LastBuildDate string
|
|
|
|
Docs string
|
|
|
|
Categories []Category
|
|
|
|
Generator Generator
|
|
|
|
TTL int
|
|
|
|
Rating string
|
|
|
|
SkipHours []int
|
|
|
|
SkipDays []int
|
|
|
|
Image Image
|
|
|
|
Items []Item
|
|
|
|
Cloud Cloud
|
|
|
|
TextInput Input
|
2009-11-23 12:46:12 +00:00
|
|
|
|
|
|
|
// Atom fields
|
2010-05-23 14:21:30 +00:00
|
|
|
Id string
|
|
|
|
Rights string
|
|
|
|
Author Author
|
|
|
|
SubTitle SubTitle
|
2009-11-23 12:46:12 +00:00
|
|
|
}
|