protocol: remove stray Event type

The Event struct was split into EventRequest and EventResponse back in
75a1125f but the older now unused type was never deleted.
This commit is contained in:
Michael Marineau 2017-05-04 17:13:22 -07:00
parent d6e8a00feb
commit 036aedf2d7
1 changed files with 0 additions and 8 deletions

View File

@ -237,14 +237,6 @@ type OS struct {
Arch string `xml:"arch,attr,omitempty"`
}
type Event struct {
Type EventType `xml:"eventtype,attr"`
Result EventResult `xml:"eventresult,attr"`
PreviousVersion string `xml:"previousversion,attr,omitempty"`
ErrorCode string `xml:"errorcode,attr,omitempty"`
Status string `xml:"status,attr,omitempty"`
}
type URL struct {
CodeBase string `xml:"codebase,attr"`
}