diff --git a/cmd/apps/therealssh/therealssh.go b/cmd/apps/therealssh/therealssh.go index 2bf2f64359..e610ee1c4b 100644 --- a/cmd/apps/therealssh/therealssh.go +++ b/cmd/apps/therealssh/therealssh.go @@ -7,11 +7,10 @@ import ( "flag" "log" + homedir "github.com/mitchellh/go-homedir" "github.com/sirupsen/logrus" "github.com/skycoin/skycoin/src/util/logging" - homedir "github.com/mitchellh/go-homedir" - ssh "github.com/skycoin/skywire/internal/therealssh" "github.com/skycoin/skywire/pkg/app" ) diff --git a/internal/therealssh/channel.go b/internal/therealssh/channel.go index 2795f447fc..dc86e82083 100644 --- a/internal/therealssh/channel.go +++ b/internal/therealssh/channel.go @@ -13,10 +13,9 @@ import ( "strings" "sync" - "github.com/skycoin/skycoin/src/util/logging" - "github.com/kr/pty" "github.com/skycoin/dmsg/cipher" + "github.com/skycoin/skycoin/src/util/logging" "github.com/skycoin/skywire/pkg/app" ) diff --git a/internal/therealssh/client.go b/internal/therealssh/client.go index 32c7fe7a72..22442ef956 100644 --- a/internal/therealssh/client.go +++ b/internal/therealssh/client.go @@ -11,10 +11,9 @@ import ( "strings" "time" - "github.com/skycoin/skycoin/src/util/logging" - "github.com/kr/pty" "github.com/skycoin/dmsg/cipher" + "github.com/skycoin/skycoin/src/util/logging" "github.com/skycoin/skywire/internal/netutil" "github.com/skycoin/skywire/pkg/app" diff --git a/internal/therealssh/client_test.go b/internal/therealssh/client_test.go index e272e8a4d9..f1b0f9ebba 100644 --- a/internal/therealssh/client_test.go +++ b/internal/therealssh/client_test.go @@ -5,9 +5,8 @@ import ( "net" "testing" - "github.com/skycoin/skycoin/src/util/logging" - "github.com/skycoin/dmsg/cipher" + "github.com/skycoin/skycoin/src/util/logging" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/internal/therealssh/server.go b/internal/therealssh/server.go index b802a79e42..6d3a8658dd 100644 --- a/internal/therealssh/server.go +++ b/internal/therealssh/server.go @@ -8,9 +8,8 @@ import ( "log" "net" - "github.com/skycoin/skycoin/src/util/logging" - "github.com/skycoin/dmsg/cipher" + "github.com/skycoin/skycoin/src/util/logging" "github.com/skycoin/skywire/pkg/app" )