mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 08:28:52 +00:00
11 lines
368 B
Go
11 lines
368 B
Go
package oval_input
|
|
|
|
// UbuntuResultXML groups together the different tokens produced from parsing an OVAL file targeting
|
|
// Ubuntu distros.
|
|
type UbuntuResultXML struct {
|
|
Definitions []DefinitionXML
|
|
DpkgInfoTests []DpkgInfoTestXML
|
|
DpkgInfoStates []DpkgInfoStateXML
|
|
DpkgInfoObjects []PackageInfoTestObjectXML
|
|
Variables map[string]ConstantVariableXML
|
|
}
|