mirror of
https://github.com/project-zot/zot.git
synced 2025-01-06 22:40:28 -05:00
7e3d063319
Signed-off-by: Laurentiu Niculae <themelopeus@gmail.com>
27 lines
558 B
Go
27 lines
558 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.BaseOciLayoutUtils
|
|
}
|
|
|
|
type CveTrivyController struct {
|
|
DefaultCveConfig *TrivyCtx
|
|
SubCveConfig map[string]*TrivyCtx
|
|
}
|
|
|
|
type TrivyCtx struct {
|
|
Input string
|
|
Ctx *cli.Context
|
|
}
|