rmmagent/agent/system/structs.go
2022-06-17 11:01:34 -07:00

15 lines
No EOL
245 B
Go

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