mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
21 lines
508 B
Go
21 lines
508 B
Go
|
package volumedrivers
|
||
|
|
||
|
import "github.com/docker/docker/volume"
|
||
|
|
||
|
type client interface {
|
||
|
Call(string, interface{}, interface{}) error
|
||
|
}
|
||
|
|
||
|
func NewVolumeDriver(name string, c client) volume.Driver {
|
||
|
proxy := &volumeDriverProxy{c}
|
||
|
return &volumeDriverAdapter{name, proxy}
|
||
|
}
|
||
|
|
||
|
type VolumeDriver interface {
|
||
|
Create(name string) (err error)
|
||
|
Remove(name string) (err error)
|
||
|
Path(name string) (mountpoint string, err error)
|
||
|
Mount(name string) (mountpoint string, err error)
|
||
|
Unmount(name string) (err error)
|
||
|
}
|