14 lines
284 B
Go
14 lines
284 B
Go
package types
|
|
|
|
// Config represents the LURE configuration file
|
|
type Config struct {
|
|
RootCmd string `toml:"rootCmd"`
|
|
Repos []Repo `toml:"repo"`
|
|
}
|
|
|
|
// Repo represents a LURE repo within a configuration file
|
|
type Repo struct {
|
|
Name string `toml:"name"`
|
|
URL string `toml:"url"`
|
|
}
|