mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
14 lines
523 B
Go
14 lines
523 B
Go
package oval_input
|
|
|
|
// RhelResultXML groups together the different tokens produced from parsing an OVAL file targeting
|
|
// RHEL distros.
|
|
type RhelResultXML struct {
|
|
Definitions []DefinitionXML
|
|
RpmVerifyFileTests []RpmVerifyFileTestXML
|
|
RpmInfoTests []RpmInfoTestXML
|
|
RpmInfoTestStates []RpmInfoStateXML
|
|
RpmInfoTestObjects []PackageInfoTestObjectXML
|
|
RpmVerifyFileObjects []RpmVerifyFileObjectXML
|
|
RpmVerifyFileStates []RpmVerifyFileStateXML
|
|
Variables map[string]ConstantVariableXML
|
|
}
|