mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
779a5b3029
Signed-off-by: Sebastiaan van Stijn <github@gone.nl> Signed-off-by: Djordje Lukic <djordje.lukic@docker.com>
13 lines
379 B
Go
13 lines
379 B
Go
package containerd
|
|
|
|
import (
|
|
"context"
|
|
|
|
imagetype "github.com/docker/docker/api/types/image"
|
|
"github.com/docker/docker/image"
|
|
)
|
|
|
|
// GetImage returns an image corresponding to the image referred to by refOrID.
|
|
func (i *ImageService) GetImage(ctx context.Context, refOrID string, options imagetype.GetImageOpts) (retImg *image.Image, retErr error) {
|
|
panic("not implemented")
|
|
}
|