diff options
Diffstat (limited to 'lib/xsapiv1/targets.go')
-rw-r--r-- | lib/xsapiv1/targets.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/xsapiv1/targets.go b/lib/xsapiv1/targets.go index 3f2b3c4..793724a 100644 --- a/lib/xsapiv1/targets.go +++ b/lib/xsapiv1/targets.go @@ -99,8 +99,8 @@ type ( TerminalOutMsg struct { TermID string `json:"termID"` Timestamp string `json:"timestamp"` - Stdout string `json:"stdout"` - Stderr string `json:"stderr"` + Stdout []byte `json:"stdout"` + Stderr []byte `json:"stderr"` } // TerminalExitMsg Message sent on terminal/console exit |