This commit is contained in:
17689440205
2025-01-26 16:43:51 +08:00
commit 460a1f428b
99 changed files with 14911 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
package constants
type TerminalType string
const (
TERMINAL_PTY TerminalType = "pty"
TERMINAL_STD TerminalType = "std"
)
type ProcessState int32
const (
PROCESS_STOP ProcessState = iota
PROCESS_START
PROCESS_WARNNING
)