mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-27 05:17:27 +08:00
22 lines
507 B
Go
22 lines
507 B
Go
package events
|
|
|
|
// StartEventData contains data for start events
|
|
type StartEventData struct{}
|
|
|
|
func (StartEventData) ControlEventData() {}
|
|
|
|
// StopEventData contains data for stop events
|
|
type StopEventData struct{}
|
|
|
|
func (StopEventData) ControlEventData() {}
|
|
|
|
// HaltEventData contains data for halt events
|
|
type HaltEventData struct{}
|
|
|
|
func (HaltEventData) ControlEventData() {}
|
|
|
|
// ResumeEventData contains data for resume events
|
|
type ResumeEventData struct{}
|
|
|
|
func (ResumeEventData) ControlEventData() {}
|