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