github.com/rochacon/deis@v1.0.2-0.20150903015341-6839b592a1ff/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  }