github.com/clcy1243/docker@v1.6.0-rc3/image/graph.go (about) 1 package image 2 3 import ( 4 "github.com/docker/docker/daemon/graphdriver" 5 ) 6 7 type Graph interface { 8 Get(id string) (*Image, error) 9 ImageRoot(id string) string 10 Driver() graphdriver.Driver 11 }