aboutsummaryrefslogtreecommitdiff
path: root/pkg/config/feed.go
blob: e6788d2642f446b7d5d5e72640c16212ddf4d46d (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
	Url    string
	Options
}

// Convenience type for all feeds
type Feeds map[string]*Feed
>René 'Necoro' Neumann8-5/+40 2020-05-02Typo and mention config example in READMERené 'Necoro' Neumann2-1/+3