image/graph.go
82a54398
 package image
 
 import (
b3ee9ac7
 	"github.com/docker/docker/daemon/graphdriver"
82a54398
 )
 
 type Graph interface {
 	Get(id string) (*Image, error)
 	ImageRoot(id string) string
 	Driver() graphdriver.Driver
 }