Files
EdgeNode/internal/events/events.go

9 lines
144 B
Go
Raw Normal View History

2020-10-28 11:19:06 +08:00
package events
type Event = string
const (
EventStart Event = "start" // start loading
EventQuit Event = "quit" // quit node gracefully
2020-10-28 11:19:06 +08:00
)