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