mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-21 10:27:26 +08:00
* v2.1.0 [omit consensus and adjacent] - this commit will be amended with the full release after the file copy is complete * 2.1.0 main node rollup
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() {}
|