Files
zot/pkg/extensions/config.go
T
2020-10-22 17:20:07 -07:00

17 lines
282 B
Go

package extensions
import "time"
type ExtensionConfig struct {
Search *SearchConfig
}
type SearchConfig struct {
// CVE search
CVE *CVEConfig
}
type CVEConfig struct {
UpdateInterval time.Duration // should be 2 hours or more, if not specified default be kept as 24 hours
}