mirror of
https://github.com/lzh-1625/go_process_manager.git
synced 2025-09-28 21:02:11 +08:00
18 lines
253 B
Go
18 lines
253 B
Go
package eum
|
|
|
|
type TerminalType string
|
|
|
|
const (
|
|
TerminalPty TerminalType = "pty"
|
|
TerminalStd TerminalType = "std"
|
|
)
|
|
|
|
type ProcessState int32
|
|
|
|
const (
|
|
ProcessStateStop ProcessState = iota
|
|
ProcessStateStart
|
|
ProcessStateWarnning
|
|
ProcessStateRunning
|
|
)
|