github.com/Heebron/moby@v0.0.0-20221111184709-6eab4f55faf7/daemon/containerd/image_history.go (about)

     1  package containerd
     2  
     3  import (
     4  	"errors"
     5  
     6  	imagetype "github.com/docker/docker/api/types/image"
     7  	"github.com/docker/docker/errdefs"
     8  )
     9  
    10  // ImageHistory returns a slice of ImageHistory structures for the specified
    11  // image name by walking the image lineage.
    12  func (i *ImageService) ImageHistory(name string) ([]*imagetype.HistoryResponseItem, error) {
    13  	return nil, errdefs.NotImplemented(errors.New("not implemented"))
    14  }