This cleans up some of the package API's used for interacting with volumes, and simplifies management. Signed-off-by: Brian Goff <cpuguy83@gmail.com> Upstream-commit: e4b6adc88e967971de634596654d9bc33e7bd7e0 Component: engine
11 lines
282 B
Go
11 lines
282 B
Go
// +build !linux,!windows
|
|
|
|
package service // import "github.com/docker/docker/volume/service"
|
|
|
|
import (
|
|
"github.com/docker/docker/pkg/idtools"
|
|
"github.com/docker/docker/volume/drivers"
|
|
)
|
|
|
|
func setupDefaultDriver(_ *drivers.Store, _ string, _ idtools.IDPair) error { return nil }
|