rmmagent/agent/system/structs.go
2022-06-16 17:04:01 -07:00

13 lines
No EOL
207 B
Go

package system
import "time"
type CmdOptions struct {
Shell string
Command string
Args []string
Timeout time.Duration
IsScript bool
IsExecutable bool
Detached bool
}