about summary refs log tree commit diff stats
path: root/internal/config/source.go
blob: 15b1aa05379129de9b04fdd0e9a5e83aa55140e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package config

type Source struct {
	Name          string
	Key           string
	Enable        bool
	Fetcher       Fetcher
	Importer      ImporterType
	Channel       string
	URL           string
	Attribute     string
	ImportPath    string
	FetchTimeout  Duration
	ImportTimeout Duration
	OutputPath    string
	Repo          Repository
}