Args build an icmd.Cmd struct from the specified (command and) arguments.
(commandAndArgs ...string)
| 140 | |
| 141 | // Args build an icmd.Cmd struct from the specified (command and) arguments. |
| 142 | func Args(commandAndArgs ...string) icmd.Cmd { |
| 143 | return icmd.Cmd{Command: commandAndArgs} |
| 144 | } |
| 145 | |
| 146 | // Daemon points to the specified daemon |
| 147 | func Daemon(d *daemon.Daemon) func(*icmd.Cmd) func() { |
no outgoing calls
searching dependent graphs…