blob: 4641cbcb92118c64ba848f4813bcf90732afc52f (
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
|