d0d1731af7
Signed-off-by: Alex Vanin <alexey@nspcc.ru>
11 lines
213 B
Go
11 lines
213 B
Go
package governance
|
|
|
|
// Sync is a event to start governance synchronization.
|
|
type Sync struct{}
|
|
|
|
// MorphEvent implements Event interface.
|
|
func (s Sync) MorphEvent() {}
|
|
|
|
func NewSyncEvent() Sync {
|
|
return Sync{}
|
|
}
|