mirror of
https://github.com/lzh-1625/go_process_manager.git
synced 2025-12-24 12:57:52 +08:00
14 lines
376 B
Go
14 lines
376 B
Go
package eum
|
|
|
|
type EventType string
|
|
|
|
const (
|
|
EventProcessStart EventType = "ProcessStart"
|
|
EventProcessStop EventType = "ProcessStop"
|
|
EventProcessWarning EventType = "ProcessWarning"
|
|
EventProcessConnect EventType = "ProcessConnect"
|
|
EventTaskStart EventType = "TaskStart"
|
|
EventTaskStop EventType = "TaskStop"
|
|
EventApiRequest EventType = "ApiRequest"
|
|
)
|