2014-03-07 20:36:47 -05:00
|
|
|
package image
|
|
|
|
|
|
|
|
import (
|
2014-07-24 18:19:50 -04:00
|
|
|
"github.com/docker/docker/daemon/graphdriver"
|
2014-03-07 20:36:47 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
type Graph interface {
|
|
|
|
Get(id string) (*Image, error)
|
|
|
|
ImageRoot(id string) string
|
|
|
|
Driver() graphdriver.Driver
|
|
|
|
}
|