fleet/server/webhooks/vuln_args.go

15 lines
254 B
Go
Raw Normal View History

package webhooks
import (
"time"
"github.com/fleetdm/fleet/v4/server/fleet"
)
type VulnArgs struct {
Vulnerablities []fleet.SoftwareVulnerability
Meta map[string]fleet.CVEMeta
AppConfig *fleet.AppConfig
Time time.Time
}