images: move image package to images

Signed-off-by: Stephen J Day <stephen.day@docker.com>
This commit is contained in:
Stephen J Day 2017-03-21 17:36:37 -07:00
parent 604af9cd46
commit 39da6ff879
No known key found for this signature in database
GPG key ID: 67B3DED84EDC823F
10 changed files with 28 additions and 28 deletions

4
cmd/dist/images.go vendored
View file

@ -5,7 +5,7 @@ import (
"os"
"text/tabwriter"
"github.com/docker/containerd/image"
"github.com/docker/containerd/images"
"github.com/docker/containerd/progress"
"github.com/pkg/errors"
"github.com/urfave/cli"
@ -29,7 +29,7 @@ var imagesCommand = cli.Command{
}
defer tx.Rollback()
images, err := image.List(tx)
images, err := images.List(tx)
if err != nil {
return errors.Wrap(err, "failed to list images")
}