This repository was archived by the owner on Nov 27, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 14 files changed +11
-11
lines changed Expand file tree Collapse file tree 14 files changed +11
-11
lines changed File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ import (
22
22
23
23
"github.com/spf13/cobra"
24
24
25
+ "github.com/docker/compose-cli/api/config"
25
26
"github.com/docker/compose-cli/api/context/store"
26
- "github.com/docker/compose-cli/config"
27
27
)
28
28
29
29
func useCommand () * cobra.Command {
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ import (
22
22
23
23
"github.com/spf13/pflag"
24
24
25
- "github.com/docker/compose-cli/config"
25
+ "github.com/docker/compose-cli/api/ config"
26
26
)
27
27
28
28
// ConfigFlags are the global CLI flags
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ import (
32
32
"github.com/sirupsen/logrus"
33
33
"github.com/spf13/cobra"
34
34
35
+ "github.com/docker/compose-cli/api/config"
35
36
apicontext "github.com/docker/compose-cli/api/context"
36
37
"github.com/docker/compose-cli/api/context/store"
37
38
"github.com/docker/compose-cli/api/errdefs"
@@ -45,7 +46,6 @@ import (
45
46
"github.com/docker/compose-cli/cli/metrics"
46
47
"github.com/docker/compose-cli/cli/mobycli"
47
48
cliopts "github.com/docker/compose-cli/cli/options"
48
- "github.com/docker/compose-cli/config"
49
49
50
50
// Backend registrations
51
51
_ "github.com/docker/compose-cli/aci"
Original file line number Diff line number Diff line change @@ -24,11 +24,11 @@ import (
24
24
25
25
"gotest.tools/v3/assert"
26
26
27
+ "github.com/docker/compose-cli/api/config"
27
28
"github.com/docker/compose-cli/cli/cmd"
28
29
"github.com/docker/compose-cli/cli/cmd/context"
29
30
"github.com/docker/compose-cli/cli/cmd/login"
30
31
"github.com/docker/compose-cli/cli/cmd/run"
31
- "github.com/docker/compose-cli/config"
32
32
)
33
33
34
34
var contextSetConfig = []byte (`{
Original file line number Diff line number Diff line change @@ -25,10 +25,10 @@ import (
25
25
"google.golang.org/grpc/metadata"
26
26
27
27
"github.com/docker/compose-cli/api/client"
28
+ "github.com/docker/compose-cli/api/config"
28
29
apicontext "github.com/docker/compose-cli/api/context"
29
30
"github.com/docker/compose-cli/api/context/store"
30
31
"github.com/docker/compose-cli/cli/server/proxy"
31
- "github.com/docker/compose-cli/config"
32
32
)
33
33
34
34
// key is the key where the current docker context is stored in the metadata
Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ import (
28
28
"gotest.tools/v3/assert"
29
29
"gotest.tools/v3/assert/cmp"
30
30
31
+ "github.com/docker/compose-cli/api/config"
31
32
apicontext "github.com/docker/compose-cli/api/context"
32
- "github.com/docker/compose-cli/config"
33
33
)
34
34
35
35
func testContext (t * testing.T ) context.Context {
Original file line number Diff line number Diff line change @@ -19,9 +19,9 @@ package proxy
19
19
import (
20
20
"context"
21
21
22
+ "github.com/docker/compose-cli/api/config"
22
23
"github.com/docker/compose-cli/api/context/store"
23
24
contextsv1 "github.com/docker/compose-cli/cli/server/protos/contexts/v1"
24
- "github.com/docker/compose-cli/config"
25
25
)
26
26
27
27
type contextsProxy struct {
You can’t perform that action at this time.
0 commit comments