mirror of
https://github.com/project-zot/zot.git
synced 2024-12-23 22:27:35 -05:00
ac3801ea2d
Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com>
27 lines
554 B
Go
27 lines
554 B
Go
// Package cveinfo ...
|
|
package cveinfo
|
|
|
|
import (
|
|
"github.com/urfave/cli/v2"
|
|
"zotregistry.io/zot/pkg/extensions/search/common"
|
|
"zotregistry.io/zot/pkg/log"
|
|
"zotregistry.io/zot/pkg/storage"
|
|
)
|
|
|
|
// CveInfo ...
|
|
type CveInfo struct {
|
|
Log log.Logger
|
|
CveTrivyController CveTrivyController
|
|
StoreController storage.StoreController
|
|
LayoutUtils *common.OciLayoutUtils
|
|
}
|
|
|
|
type CveTrivyController struct {
|
|
DefaultCveConfig *TrivyCtx
|
|
SubCveConfig map[string]*TrivyCtx
|
|
}
|
|
|
|
type TrivyCtx struct {
|
|
Input string
|
|
Ctx *cli.Context
|
|
}
|