Docker-DCO-1.1-Signed-off-by: Victor Vieux <vieux@docker.com> (github: vieux) Upstream-commit: b3ee9ac74e171e00f14027e39278013629e681b8 Component: engine
12 lines
189 B
Go
12 lines
189 B
Go
package image
|
|
|
|
import (
|
|
"github.com/docker/docker/daemon/graphdriver"
|
|
)
|
|
|
|
type Graph interface {
|
|
Get(id string) (*Image, error)
|
|
ImageRoot(id string) string
|
|
Driver() graphdriver.Driver
|
|
}
|