mirror of
https://github.com/project-zot/zot.git
synced 2024-12-23 22:27:35 -05:00
20 lines
313 B
Go
20 lines
313 B
Go
// Package cveinfo ...
|
|
package cveinfo
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/anuvu/zot/pkg/log"
|
|
config "github.com/aquasecurity/trivy/integration/config"
|
|
)
|
|
|
|
// CveInfo ...
|
|
type CveInfo struct {
|
|
Log log.Logger
|
|
CveTrivyConfig *config.Config
|
|
}
|
|
|
|
type TagInfo struct {
|
|
Name string
|
|
Timestamp time.Time
|
|
}
|