dont' include stdin/out/err in create output

This commit is contained in:
jaffee 2017-01-13 14:51:45 -06:00
parent 96e97f2353
commit 825ce4ca89

View file

@ -1012,9 +1012,9 @@ type CreateCommand struct {
FinalHosts []string `json:"final-hosts"`
// Standard input/output
Stdin io.Reader
Stdout io.Writer
Stderr io.Writer
Stdin io.Reader `json:"-"`
Stdout io.Writer `json:"-"`
Stderr io.Writer `json:"-"`
}
// NewCreateCommand returns a new instance of CreateCommand.