diff --git a/commands.go b/commands.go index ff4b12e942..0627261d53 100644 --- a/commands.go +++ b/commands.go @@ -13,7 +13,7 @@ import ( "github.com/dotcloud/docker/auth" "github.com/dotcloud/docker/engine" "github.com/dotcloud/docker/registry" - "github.com/dotcloud/docker/term" + "github.com/dotcloud/docker/pkg/term" "github.com/dotcloud/docker/utils" "io" "io/ioutil" diff --git a/container.go b/container.go index bb591669af..532a697839 100644 --- a/container.go +++ b/container.go @@ -8,7 +8,7 @@ import ( "github.com/dotcloud/docker/archive" "github.com/dotcloud/docker/graphdriver" "github.com/dotcloud/docker/mount" - "github.com/dotcloud/docker/term" + "github.com/dotcloud/docker/pkg/term" "github.com/dotcloud/docker/utils" "github.com/kr/pty" "io" diff --git a/integration/commands_test.go b/integration/commands_test.go index 84a9008224..9a2168d966 100644 --- a/integration/commands_test.go +++ b/integration/commands_test.go @@ -5,7 +5,7 @@ import ( "fmt" "github.com/dotcloud/docker" "github.com/dotcloud/docker/engine" - "github.com/dotcloud/docker/term" + "github.com/dotcloud/docker/pkg/term" "github.com/dotcloud/docker/utils" "io" "io/ioutil" diff --git a/term/MAINTAINERS b/pkg/term/MAINTAINERS similarity index 100% rename from term/MAINTAINERS rename to pkg/term/MAINTAINERS diff --git a/term/term.go b/pkg/term/term.go similarity index 100% rename from term/term.go rename to pkg/term/term.go diff --git a/term/termios_darwin.go b/pkg/term/termios_darwin.go similarity index 100% rename from term/termios_darwin.go rename to pkg/term/termios_darwin.go diff --git a/term/termios_linux.go b/pkg/term/termios_linux.go similarity index 100% rename from term/termios_linux.go rename to pkg/term/termios_linux.go diff --git a/utils/jsonmessage.go b/utils/jsonmessage.go index cc467162f9..e06780fc1e 100644 --- a/utils/jsonmessage.go +++ b/utils/jsonmessage.go @@ -3,7 +3,7 @@ package utils import ( "encoding/json" "fmt" - "github.com/dotcloud/docker/term" + "github.com/dotcloud/docker/pkg/term" "io" "strings" "time"