diff --git a/daemon/container.go b/daemon/container.go index d62eb6d2fa..0782331d07 100644 --- a/daemon/container.go +++ b/daemon/container.go @@ -22,12 +22,12 @@ import ( "github.com/docker/docker/image" "github.com/docker/docker/links" "github.com/docker/docker/nat" + "github.com/docker/docker/pkg/broadcastwriter" "github.com/docker/docker/pkg/networkfs/etchosts" "github.com/docker/docker/pkg/networkfs/resolvconf" "github.com/docker/docker/pkg/symlink" "github.com/docker/docker/runconfig" "github.com/docker/docker/utils" - "github.com/docker/docker/utils/broadcastwriter" "github.com/docker/libcontainer/devices" "github.com/docker/libcontainer/label" ) diff --git a/daemon/daemon.go b/daemon/daemon.go index 0d275492dc..da953846b8 100644 --- a/daemon/daemon.go +++ b/daemon/daemon.go @@ -26,6 +26,7 @@ import ( "github.com/docker/docker/engine" "github.com/docker/docker/graph" "github.com/docker/docker/image" + "github.com/docker/docker/pkg/broadcastwriter" "github.com/docker/docker/pkg/graphdb" "github.com/docker/docker/pkg/namesgenerator" "github.com/docker/docker/pkg/networkfs/resolvconf" @@ -35,7 +36,6 @@ import ( "github.com/docker/docker/pkg/truncindex" "github.com/docker/docker/runconfig" "github.com/docker/docker/utils" - "github.com/docker/docker/utils/broadcastwriter" "github.com/docker/libcontainer/label" ) diff --git a/utils/broadcastwriter/broadcastwriter.go b/pkg/broadcastwriter/broadcastwriter.go similarity index 100% rename from utils/broadcastwriter/broadcastwriter.go rename to pkg/broadcastwriter/broadcastwriter.go diff --git a/utils/broadcastwriter/broadcastwriter_test.go b/pkg/broadcastwriter/broadcastwriter_test.go similarity index 100% rename from utils/broadcastwriter/broadcastwriter_test.go rename to pkg/broadcastwriter/broadcastwriter_test.go