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 /cmd | |
parent | 83d11f4deeb20b852a0af3433190a0f7250a0027 (diff) | |
download | gitlab-shell-ff46222a3a75467d6b22c94abb09a3bb6be60623.tar.gz |
Rename import paths
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/check/main.go | 8 | ||||
-rw-r--r-- | cmd/gitlab-shell-authorized-keys-check/main.go | 8 | ||||
-rw-r--r-- | cmd/gitlab-shell-authorized-principals-check/main.go | 8 | ||||
-rw-r--r-- | cmd/gitlab-shell/main.go | 8 |
4 files changed, 16 insertions, 16 deletions
diff --git a/cmd/check/main.go b/cmd/check/main.go index 1d32f77..a72d38c 100644 --- a/cmd/check/main.go +++ b/cmd/check/main.go @@ -4,10 +4,10 @@ import ( "fmt" "os" - "gitlab.com/gitlab-org/gitlab-shell/go/internal/command" - "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/executable" + "gitlab.com/gitlab-org/gitlab-shell/internal/command" + "gitlab.com/gitlab-org/gitlab-shell/internal/command/readwriter" + "gitlab.com/gitlab-org/gitlab-shell/internal/config" + "gitlab.com/gitlab-org/gitlab-shell/internal/executable" ) func main() { diff --git a/cmd/gitlab-shell-authorized-keys-check/main.go b/cmd/gitlab-shell-authorized-keys-check/main.go index d8bb524..6b52181 100644 --- a/cmd/gitlab-shell-authorized-keys-check/main.go +++ b/cmd/gitlab-shell-authorized-keys-check/main.go @@ -4,10 +4,10 @@ import ( "fmt" "os" - "gitlab.com/gitlab-org/gitlab-shell/go/internal/command" - "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/executable" + "gitlab.com/gitlab-org/gitlab-shell/internal/command" + "gitlab.com/gitlab-org/gitlab-shell/internal/command/readwriter" + "gitlab.com/gitlab-org/gitlab-shell/internal/config" + "gitlab.com/gitlab-org/gitlab-shell/internal/executable" ) func main() { diff --git a/cmd/gitlab-shell-authorized-principals-check/main.go b/cmd/gitlab-shell-authorized-principals-check/main.go index 5c9caf8..645ccf0 100644 --- a/cmd/gitlab-shell-authorized-principals-check/main.go +++ b/cmd/gitlab-shell-authorized-principals-check/main.go @@ -4,10 +4,10 @@ import ( "fmt" "os" - "gitlab.com/gitlab-org/gitlab-shell/go/internal/command" - "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/executable" + "gitlab.com/gitlab-org/gitlab-shell/internal/command" + "gitlab.com/gitlab-org/gitlab-shell/internal/command/readwriter" + "gitlab.com/gitlab-org/gitlab-shell/internal/config" + "gitlab.com/gitlab-org/gitlab-shell/internal/executable" ) func main() { diff --git a/cmd/gitlab-shell/main.go b/cmd/gitlab-shell/main.go index adb5198..148c652 100644 --- a/cmd/gitlab-shell/main.go +++ b/cmd/gitlab-shell/main.go @@ -4,10 +4,10 @@ import ( "fmt" "os" - "gitlab.com/gitlab-org/gitlab-shell/go/internal/command" - "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/executable" + "gitlab.com/gitlab-org/gitlab-shell/internal/command" + "gitlab.com/gitlab-org/gitlab-shell/internal/command/readwriter" + "gitlab.com/gitlab-org/gitlab-shell/internal/config" + "gitlab.com/gitlab-org/gitlab-shell/internal/executable" ) func main() { |