mirror of
https://github.com/project-zot/zot.git
synced 2025-02-03 23:09:41 -05:00
17 lines
282 B
Go
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
|
||
|
}
|