mirror of
https://github.com/project-zot/zot.git
synced 2024-12-23 22:27:35 -05:00
16 lines
282 B
Go
16 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
|
|
}
|