Rewrite imports for new github org

This rewrites the Go imports after switching to the new github org.

Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
This commit is contained in:
Michael Crosby
2017-04-03 13:14:15 -07:00
parent 0521958ac0
commit 4f2b443a27
101 changed files with 540 additions and 543 deletions

12
cmd/dist/fetch.go vendored
View File

@@ -9,12 +9,12 @@ import (
"text/tabwriter"
"time"
contentapi "github.com/docker/containerd/api/services/content"
"github.com/docker/containerd/images"
"github.com/docker/containerd/log"
"github.com/docker/containerd/progress"
"github.com/docker/containerd/remotes"
contentservice "github.com/docker/containerd/services/content"
contentapi "github.com/containerd/containerd/api/services/content"
"github.com/containerd/containerd/images"
"github.com/containerd/containerd/log"
"github.com/containerd/containerd/progress"
"github.com/containerd/containerd/remotes"
contentservice "github.com/containerd/containerd/services/content"
ocispec "github.com/opencontainers/image-spec/specs-go/v1"
"github.com/urfave/cli"
"golang.org/x/sync/errgroup"