8 lines
97 B
Go
8 lines
97 B
Go
package events
|
|
|
|
type Event = string
|
|
|
|
const (
|
|
EventQuit Event = "quit" // quit node gracefully
|
|
)
|