blob: a861e2e4ec5c4a80c95aec0d5344dda752767948 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package config
// One stored feed
type Feed struct {
Name string
Target []string `yaml:"-"`
Url string
Options `yaml:",inline"`
}
// Convenience type for all feeds
type Feeds map[string]*Feed
|