diff options
| author | Paul Buetow <paul@buetow.org> | 2021-08-22 10:07:00 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2021-08-22 10:07:00 +0300 |
| commit | 9883a190109623b64e6d311dc2b462a6eae68003 (patch) | |
| tree | da319d37bf681687beb2c38e6292b30f5e04a261 /internal/ssh | |
| parent | c2522ffb59514443816a96386c16bb7527cbe57c (diff) | |
introduces the protocol package
Diffstat (limited to 'internal/ssh')
| -rw-r--r-- | internal/ssh/ssh.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/ssh/ssh.go b/internal/ssh/ssh.go index 3a2e416..78bf99e 100644 --- a/internal/ssh/ssh.go +++ b/internal/ssh/ssh.go @@ -6,12 +6,13 @@ import ( "crypto/x509" "encoding/pem" "fmt" - "github.com/mimecast/dtail/internal/io/logger" "io/ioutil" "net" "os" "syscall" + "github.com/mimecast/dtail/internal/io/logger" + gossh "golang.org/x/crypto/ssh" "golang.org/x/crypto/ssh/agent" "golang.org/x/crypto/ssh/terminal" |
