mirror of
https://github.com/project-zot/zot.git
synced 2024-12-16 21:56:37 -05:00
28974e81dc
added support to point multiple storage locations in zot by running multiple instance of zot in background. see examples/config-multiple.json for more info about config. Closes #181
14 lines
225 B
Go
14 lines
225 B
Go
package compliance
|
|
|
|
type Config struct {
|
|
Address string
|
|
Port string
|
|
Version string
|
|
StorageInfo []string
|
|
OutputJSON bool
|
|
Compliance bool
|
|
}
|
|
|
|
func NewConfig() *Config {
|
|
return &Config{Compliance: true}
|
|
}
|