mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
b6d084deec
Premium users should receive vulnerability scores as part of the web-hook payload.
15 lines
254 B
Go
15 lines
254 B
Go
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
|
|
}
|