mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
e4b6adc88e
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>
10 lines
282 B
Go
10 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 }
|