2021-11-02 18:19:31 +00:00
|
|
|
package config
|
|
|
|
|
|
|
|
type Configuration struct {
|
|
|
|
Workspace string
|
|
|
|
Repositories []RepositoryConfig
|
|
|
|
}
|
|
|
|
|
|
|
|
type RepositoryConfig struct {
|
2021-11-07 13:05:45 +00:00
|
|
|
Name string `yaml:",omitempty"`
|
|
|
|
Src string `yaml:",omitempty"`
|
|
|
|
Dest string `yaml:",omitempty"`
|
|
|
|
Tags []string `yaml:",omitempty"`
|
2021-11-02 18:19:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type CliArguments struct {
|
|
|
|
ConfigurationFile string
|
|
|
|
Sync bool
|
2021-11-05 17:19:06 +00:00
|
|
|
Status bool
|
2021-11-02 18:19:31 +00:00
|
|
|
Version bool
|
|
|
|
Color bool
|
2021-11-07 13:05:45 +00:00
|
|
|
LimitName string
|
|
|
|
LimitTags []string
|
2021-11-02 18:19:31 +00:00
|
|
|
}
|