(cmd string, args ...string)
| 239 | } |
| 240 | |
| 241 | func NewCommand(cmd string, args ...string) Command { |
| 242 | return Command{ |
| 243 | Cmd: cmd, |
| 244 | Args: args, |
| 245 | } |
| 246 | } |
| 247 | |
| 248 | func (c Command) toString() string { |
| 249 | var a []string |
no outgoing calls
searching dependent graphs…