mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
686be57d0a
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
10 lines
333 B
Go
10 lines
333 B
Go
//go:build linux || freebsd || darwin
|
|
// +build linux freebsd darwin
|
|
|
|
package service // import "github.com/docker/docker/volume/service"
|
|
|
|
// normalizeVolumeName is a platform specific function to normalize the name
|
|
// of a volume. This is a no-op on Unix-like platforms
|
|
func normalizeVolumeName(name string) string {
|
|
return name
|
|
}
|