diff --git a/config/cmd/cmd.go b/cmd/cmd.go similarity index 100% rename from config/cmd/cmd.go rename to cmd/cmd.go diff --git a/config/cmd/options.go b/cmd/options.go similarity index 100% rename from config/cmd/options.go rename to cmd/options.go diff --git a/config/source/cli/cli.go b/config/source/cli/cli.go index 30e1adaf..6c065cb5 100644 --- a/config/source/cli/cli.go +++ b/config/source/cli/cli.go @@ -9,7 +9,7 @@ import ( "github.com/imdario/mergo" "github.com/micro/cli/v2" - "github.com/micro/go-micro/v2/config/cmd" + "github.com/micro/go-micro/v2/cmd" "github.com/micro/go-micro/v2/config/source" ) diff --git a/config/source/cli/cli_test.go b/config/source/cli/cli_test.go index 70b1d4dd..68458aa3 100644 --- a/config/source/cli/cli_test.go +++ b/config/source/cli/cli_test.go @@ -8,7 +8,7 @@ import ( "github.com/micro/cli/v2" "github.com/micro/go-micro/v2" "github.com/micro/go-micro/v2/config" - "github.com/micro/go-micro/v2/config/cmd" + "github.com/micro/go-micro/v2/cmd" "github.com/micro/go-micro/v2/config/source" ) diff --git a/options.go b/options.go index 6cdee2be..beb514c9 100644 --- a/options.go +++ b/options.go @@ -9,7 +9,7 @@ import ( "github.com/micro/go-micro/v2/broker" "github.com/micro/go-micro/v2/client" "github.com/micro/go-micro/v2/config" - "github.com/micro/go-micro/v2/config/cmd" + "github.com/micro/go-micro/v2/cmd" "github.com/micro/go-micro/v2/debug/profile" "github.com/micro/go-micro/v2/debug/trace" "github.com/micro/go-micro/v2/registry" diff --git a/plugin/default.go b/plugin/default.go index 94fe9e8e..62842cf2 100644 --- a/plugin/default.go +++ b/plugin/default.go @@ -13,7 +13,7 @@ import ( "github.com/micro/go-micro/v2/broker" "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/config/cmd" + "github.com/micro/go-micro/v2/cmd" "github.com/micro/go-micro/v2/registry" "github.com/micro/go-micro/v2/selector" "github.com/micro/go-micro/v2/server" diff --git a/service.go b/service.go index e08b9f44..256e1c0f 100644 --- a/service.go +++ b/service.go @@ -9,7 +9,7 @@ import ( "github.com/micro/go-micro/v2/auth" "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/config/cmd" + "github.com/micro/go-micro/v2/cmd" "github.com/micro/go-micro/v2/debug/service/handler" "github.com/micro/go-micro/v2/debug/stats" "github.com/micro/go-micro/v2/debug/trace"