mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-12-16 07:46:36 +08:00
8 lines
97 B
Go
8 lines
97 B
Go
package events
|
|
|
|
type Event = string
|
|
|
|
const (
|
|
EventQuit Event = "quit" // quit node gracefully
|
|
)
|