mirror of
https://github.com/lzh-1625/go_process_manager.git
synced 2025-10-04 07:36:57 +08:00
12 lines
306 B
Go
12 lines
306 B
Go
package constants
|
|
|
|
type OprPermission string
|
|
|
|
const (
|
|
OPERATION_START OprPermission = "Start"
|
|
OPERATION_STOP OprPermission = "Stop"
|
|
OPERATION_TERMINAL OprPermission = "Terminal"
|
|
OPERATION_TERMINAL_WRITE OprPermission = "Write"
|
|
OPERATION_LOG OprPermission = "Log"
|
|
)
|