package shell import "io" type CommandExecutor interface { Name() string Execute(arguments []string, stdin io.Reader, stdout io.Writer, stderr io.Writer) (exitcode uint8) }