github.com/dustinrc/deis@v1.10.1-0.20150917223407-0894a5fb979e/mesos/pkg/types/command.go (about)

     1  package types
     2  
     3  import (
     4  	"io"
     5  	"os/exec"
     6  )
     7  
     8  // Command struct to execute commands.
     9  type Command struct {
    10  	Stdout, Stderr io.Writer
    11  
    12  	cmd *exec.Cmd
    13  }