blob: 31fbdd9ad878f0497c54e54872b1347a9642e2c9 [file] [log] [blame]
package image
import (
"github.com/docker/docker/daemon/graphdriver"
)
type Graph interface {
Get(id string) (*Image, error)
ImageRoot(id string) string
Driver() graphdriver.Driver
}