GitRepositoryManager/config/structures.go

21 lines
385 B
Go
Raw Permalink Normal View History

2021-11-02 18:19:31 +00:00
package config
type Configuration struct {
Workspace string
Repositories []RepositoryConfig
}
type RepositoryConfig struct {
Name string `yaml:",omitempty"`
Src string `yaml:",omitempty"`
Dest string `yaml:",omitempty"`
}
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
}