mirror of
https://github.com/lzh-1625/go_process_manager.git
synced 2025-09-27 20:32:10 +08:00
12 lines
280 B
Go
12 lines
280 B
Go
package eum
|
|
|
|
type EventType string
|
|
|
|
const (
|
|
EventProcessStart EventType = "ProcessStart"
|
|
EventProcessStop EventType = "ProcessStop"
|
|
EventProcessWarning EventType = "ProcessWarning"
|
|
EventTaskStart EventType = "TaskStart"
|
|
EventTaskStop EventType = "TaskStop"
|
|
)
|