This repository has been archived on 2026-07-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GoEdgeNode/internal/events/events.go
T
2020-10-28 11:19:06 +08:00

8 lines
97 B
Go

package events
type Event = string
const (
EventQuit Event = "quit" // quit node gracefully
)