mirror of
https://github.com/lzh-1625/go_process_manager.git
synced 2025-10-06 00:16:53 +08:00
17 lines
232 B
Go
17 lines
232 B
Go
package eum
|
|
|
|
type TerminalType string
|
|
|
|
const (
|
|
TerminalPty TerminalType = "pty"
|
|
TerminalStd TerminalType = "std"
|
|
)
|
|
|
|
type ProcessState int32
|
|
|
|
const (
|
|
ProcessStateStop ProcessState = iota
|
|
ProcessStateStart
|
|
ProcessStateWarnning
|
|
)
|