mirror of
https://github.com/lzh-1625/go_process_manager.git
synced 2025-10-04 07:36:57 +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"
|
|
)
|