15 lines
No EOL
245 B
Go
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 } |