diff options
Diffstat (limited to 'internal/clients/args.go')
| -rw-r--r-- | internal/clients/args.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/internal/clients/args.go b/internal/clients/args.go index 7f782f1..684dadd 100644 --- a/internal/clients/args.go +++ b/internal/clients/args.go @@ -1,6 +1,7 @@ package clients import ( + "github.com/mimecast/dtail/internal/lcontext" "github.com/mimecast/dtail/internal/omode" gossh "golang.org/x/crypto/ssh" @@ -8,12 +9,13 @@ import ( // Args is a helper struct to summarize common client arguments. type Args struct { + lcontext.LContext + RegexStr string Mode omode.Mode ServersStr string UserName string What string Arguments []string - RegexStr string RegexInvert bool TrustAllHosts bool Discovery string @@ -22,5 +24,5 @@ type Args struct { SSHAuthMethods []gossh.AuthMethod SSHHostKeyCallback gossh.HostKeyCallback PrivateKeyPathFile string - Quiet bool + Quiet bool } |
