mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
11 lines
339 B
Go
11 lines
339 B
Go
package oval_input
|
|
|
|
type unixUnameTestStateXML struct {
|
|
Id string `xml:"state_ref,attr"`
|
|
}
|
|
|
|
// https://oval.mitre.org/language/version5.10.1/ovaldefinition/documentation/unix-definitions-schema.html#uname_state
|
|
type UnixUnameTestXML struct {
|
|
Id string `xml:"id,attr"`
|
|
States []unixUnameTestStateXML `xml:"state"`
|
|
}
|