diff --git a/pkg/hosts/tunnel.go b/pkg/hosts/tunnel.go index 54832c50..21d33c71 100644 --- a/pkg/hosts/tunnel.go +++ b/pkg/hosts/tunnel.go @@ -8,11 +8,6 @@ type Tunnel struct { conn *ssh.Client } -type Result struct { - StdOut []byte - StdErr []byte -} - func (t *Tunnel) Close() error { return t.conn.Close() }