github.com/technosophos/deis@v1.7.1-0.20150915173815-f9005256004b/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  }