diff options
author | Nick Thomas <nick@gitlab.com> | 2019-10-17 12:10:37 +0100 |
---|---|---|
committer | Nick Thomas <nick@gitlab.com> | 2019-10-18 11:47:25 +0100 |
commit | ff46222a3a75467d6b22c94abb09a3bb6be60623 (patch) | |
tree | 9e9a141a436dbce198eb8c3cbe69be97f71d92b4 /internal/command/authorizedkeys | |
parent | 83d11f4deeb20b852a0af3433190a0f7250a0027 (diff) | |
download | gitlab-shell-ff46222a3a75467d6b22c94abb09a3bb6be60623.tar.gz |
Rename import paths
Diffstat (limited to 'internal/command/authorizedkeys')
-rw-r--r-- | internal/command/authorizedkeys/authorized_keys.go | 10 | ||||
-rw-r--r-- | internal/command/authorizedkeys/authorized_keys_test.go | 8 |
2 files changed, 9 insertions, 9 deletions
diff --git a/internal/command/authorizedkeys/authorized_keys.go b/internal/command/authorizedkeys/authorized_keys.go index d5837b0..f1cab45 100644 --- a/internal/command/authorizedkeys/authorized_keys.go +++ b/internal/command/authorizedkeys/authorized_keys.go @@ -4,11 +4,11 @@ import ( "fmt" "strconv" - "gitlab.com/gitlab-org/gitlab-shell/go/internal/command/commandargs" - "gitlab.com/gitlab-org/gitlab-shell/go/internal/command/readwriter" - "gitlab.com/gitlab-org/gitlab-shell/go/internal/config" - "gitlab.com/gitlab-org/gitlab-shell/go/internal/gitlabnet/authorizedkeys" - "gitlab.com/gitlab-org/gitlab-shell/go/internal/keyline" + "gitlab.com/gitlab-org/gitlab-shell/internal/command/commandargs" + "gitlab.com/gitlab-org/gitlab-shell/internal/command/readwriter" + "gitlab.com/gitlab-org/gitlab-shell/internal/config" + "gitlab.com/gitlab-org/gitlab-shell/internal/gitlabnet/authorizedkeys" + "gitlab.com/gitlab-org/gitlab-shell/internal/keyline" ) type Command struct { diff --git a/internal/command/authorizedkeys/authorized_keys_test.go b/internal/command/authorizedkeys/authorized_keys_test.go index 5cde366..3bf4153 100644 --- a/internal/command/authorizedkeys/authorized_keys_test.go +++ b/internal/command/authorizedkeys/authorized_keys_test.go @@ -8,10 +8,10 @@ import ( "github.com/stretchr/testify/require" - "gitlab.com/gitlab-org/gitlab-shell/go/internal/command/commandargs" - "gitlab.com/gitlab-org/gitlab-shell/go/internal/command/readwriter" - "gitlab.com/gitlab-org/gitlab-shell/go/internal/config" - "gitlab.com/gitlab-org/gitlab-shell/go/internal/gitlabnet/testserver" + "gitlab.com/gitlab-org/gitlab-shell/internal/command/commandargs" + "gitlab.com/gitlab-org/gitlab-shell/internal/command/readwriter" + "gitlab.com/gitlab-org/gitlab-shell/internal/config" + "gitlab.com/gitlab-org/gitlab-shell/internal/gitlabnet/testserver" ) var ( |