From 2679b760183042819a5cd9ccc1dab01f57113c6d Mon Sep 17 00:00:00 2001 From: mfordjody <11638005@qq.com> Date: Thu, 31 Oct 2024 15:43:12 +0800 Subject: [PATCH] [operator] Change docker prompt directory --- dubboctl/pkg/deploy/client.go | 5 +---- {dubboctl/cmd => operator/pkg/docker}/prompt/prompt.go | 0 2 files changed, 1 insertion(+), 4 deletions(-) rename {dubboctl/cmd => operator/pkg/docker}/prompt/prompt.go (100%) diff --git a/dubboctl/pkg/deploy/client.go b/dubboctl/pkg/deploy/client.go index ca173238..f9d8f41f 100644 --- a/dubboctl/pkg/deploy/client.go +++ b/dubboctl/pkg/deploy/client.go @@ -21,15 +21,12 @@ import ( "github.com/apache/dubbo-kubernetes/operator/pkg/builders/pack" "github.com/apache/dubbo-kubernetes/operator/pkg/docker" "github.com/apache/dubbo-kubernetes/operator/pkg/docker/creds" + "github.com/apache/dubbo-kubernetes/operator/pkg/docker/prompt" config "github.com/apache/dubbo-kubernetes/operator/pkg/util" "net/http" "os" ) -import ( - "github.com/apache/dubbo-kubernetes/dubboctl/cmd/prompt" -) - // ClientFactory defines a constructor which assists in the creation of a Client // for use by commands. // See the NewClient constructor which is the fully populated ClientFactory used diff --git a/dubboctl/cmd/prompt/prompt.go b/operator/pkg/docker/prompt/prompt.go similarity index 100% rename from dubboctl/cmd/prompt/prompt.go rename to operator/pkg/docker/prompt/prompt.go