summaryrefslogtreecommitdiff
path: root/image/graph.go
blob: dd0136b00ec98cb7218007211986cafb41090cea (plain)
1
2
3
4
5
6
7
8
9
10
11
package image

import (
	"github.com/dotcloud/docker/runtime/graphdriver"
)

type Graph interface {
	Get(id string) (*Image, error)
	ImageRoot(id string) string
	Driver() graphdriver.Driver
}