mirror of
https://github.com/fleetdm/fleet
synced 2026-05-14 20:48:35 +00:00
7 lines
177 B
Go
7 lines
177 B
Go
package xml
|
|
|
|
// FeedResult groups together products and their vulnerabilities.
|
|
type FeedResult struct {
|
|
WinVulnerabities []Vulnerability
|
|
WinProducts map[string]Product
|
|
}
|