2021-08-23 13:14:53 +00:00
|
|
|
//go:build !linux && !windows
|
2018-03-22 21:11:03 +00:00
|
|
|
|
|
|
|
package service // import "github.com/docker/docker/volume/service"
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/docker/docker/pkg/idtools"
|
|
|
|
"github.com/docker/docker/volume/drivers"
|
|
|
|
)
|
|
|
|
|
2017-11-16 06:20:33 +00:00
|
|
|
func setupDefaultDriver(_ *drivers.Store, _ string, _ idtools.Identity) error { return nil }
|