8000 Move api/stdcopy to api/pkg/stdcopy · moby/moby@1da4179 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1da4179

Browse files
dmcgowanthaJeztah
authored andcommitted
Move api/stdcopy to api/pkg/stdcopy
Signed-off-by: Derek McGowan <derek@mcg.dev> Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
1 parent ebef4a4 commit 1da4179

File tree

22 files changed

+19
-19
lines changed

22 files changed

+19
-19
lines changed
File renamed without changes.
File renamed without changes.

daemon/attach.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"github.com/docker/docker/daemon/logger"
1212
"github.com/docker/docker/daemon/server/backend"
1313
"github.com/docker/docker/errdefs"
14-
"github.com/moby/moby/api/stdcopy"
14+
"github.com/moby/moby/api/pkg/stdcopy"
1515
containertypes "github.com/moby/moby/api/types/container"
1616
"github.com/moby/moby/api/types/events"
1717
"github.com/moby/term"

daemon/server/httputils/write_log_stream.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010

1111
"github.com/docker/docker/daemon/server/backend"
1212
"github.com/docker/docker/pkg/ioutils"
13-
"github.com/moby/moby/api/stdcopy"
13+
"github.com/moby/moby/api/pkg/stdcopy"
1414
"github.com/moby/moby/api/types/container"
1515
)
1616

daemon/server/router/container/exec.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"github.com/docker/docker/daemon/server/backend"
1111
"github.com/docker/docker/daemo F440 n/server/httputils"
1212
"github.com/docker/docker/errdefs"
13-
"github.com/moby/moby/api/stdcopy"
13+
"github.com/moby/moby/api/pkg/stdcopy"
1414
"github.com/moby/moby/api/types"
1515
"github.com/moby/moby/api/types/container"
1616
"github.com/moby/moby/api/types/versions"

integration-cli/docker_api_attach_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"github.com/docker/docker/testutil"
1515
"github.com/docker/docker/testutil/request"
1616
"github.com/docker/go-connections/sockets"
17-
"github.com/moby/moby/api/stdcopy"
17+
"github.com/moby/moby/api/pkg/stdcopy"
1818
"github.com/moby/moby/api/types"
1919
"github.com/moby/moby/api/types/container"
2020
"github.com/moby/moby/client"

integration-cli/docker_api_logs_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"github.com/docker/docker/integration-cli/cli"
1515
"github.com/docker/docker/testutil"
1616
"github.com/docker/docker/testutil/request"
17-
"github.com/moby/moby/api/stdcopy"
17+
"github.com/moby/moby/api/pkg/stdcopy"
1818
"github.com/moby/moby/api/types/container"
1919
"github.com/moby/moby/client"
2020
"gotest.tools/v3/assert"

integration/build/build_squash_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"github.com/docker/docker/testutil"
1111
"github.com/docker/docker/testutil/daemon"
1212
"github.com/docker/docker/testutil/fakecontext"
13-
"github.com/moby/moby/api/stdcopy"
13+
"github.com/moby/moby/api/pkg/stdcopy"
1414
"github.com/moby/moby/api/types/build"
1515
containertypes "github.com/moby/moby/api/types/container"
1616
"github.com/moby/moby/client"

integration/build/build_userns_linux_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
"github.com/docker/docker/testutil/daemon"
1616
"github.com/docker/docker/testutil/fakecontext"
1717
"github.com/docker/docker/testutil/fixtures/load"
18-
"github.com/moby/moby/api/stdcopy"
18+
"github.com/moby/moby/api/pkg/stdcopy"
1919
"github.com/moby/moby/api/types/build"
2020
containertypes "github.com/moby/moby/api/types/container"
2121
"gotest.tools/v3/assert"

integration/capabilities/capabilities_linux_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"github.com/docker/docker/integration/internal/container"
1010
"github.com/docker/docker/testutil"
1111
"github.com/docker/docker/testutil/fakecontext"
12-
"github.com/moby/moby/api/stdcopy"
12+
"github.com/moby/moby/api/pkg/stdcopy"
1313
"github.com/moby/moby/api/types/build"
1414
containertypes "github.com/moby/moby/api/types/container"
1515
"gotest.tools/v3/assert"

0 commit comments

Comments
 (0)
0