2014-03-07 20:36:47 -05:00
|
|
|
package image
|
|
|
|
|
|
|
|
import (
|
2014-03-14 17:11:43 -04:00
|
|
|
"github.com/dotcloud/docker/runtime/graphdriver"
|
2014-03-07 20:36:47 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
type Graph interface {
|
|
|
|
Get(id string) (*Image, error)
|
|
|
|
ImageRoot(id string) string
|
|
|
|
Driver() graphdriver.Driver
|
|
|
|
}
|