mirror of
https://github.com/project-zot/zot.git
synced 2024-12-23 22:27:35 -05:00
519ea75d9a
``` Usage: zot images [config-name] [flags] Flags: -d, --digest string List images containing a specific manifest, config, or layer digest [...] ```
29 lines
614 B
Go
29 lines
614 B
Go
// Package cveinfo ...
|
|
package cveinfo
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/anuvu/zot/pkg/extensions/search/common"
|
|
"github.com/anuvu/zot/pkg/log"
|
|
"github.com/anuvu/zot/pkg/storage"
|
|
config "github.com/aquasecurity/trivy/integration/config"
|
|
)
|
|
|
|
// CveInfo ...
|
|
type CveInfo struct {
|
|
Log log.Logger
|
|
CveTrivyController CveTrivyController
|
|
StoreController storage.StoreController
|
|
LayoutUtils *common.OciLayoutUtils
|
|
}
|
|
|
|
type CveTrivyController struct {
|
|
DefaultCveConfig *config.Config
|
|
SubCveConfig map[string]*config.Config
|
|
}
|
|
|
|
type TagInfo struct {
|
|
Name string
|
|
Timestamp time.Time
|
|
}
|