lure/internal/types/config.go

16 lines
406 B
Go
Raw Normal View History

package types
2022-12-01 06:15:34 +00:00
// Config represents the LURE configuration file
type Config struct {
2022-12-19 01:46:40 +00:00
RootCmd string `toml:"rootCmd"`
PagerStyle string `toml:"pagerStyle"`
IgnorePkgUpdates []string `toml:"ignorePkgUpdates"`
Repos []Repo `toml:"repo"`
}
2022-12-01 06:15:34 +00:00
// Repo represents a LURE repo within a configuration file
type Repo struct {
Name string `toml:"name"`
URL string `toml:"url"`
}