github.com/toplink-cn/moby@v0.0.0-20240305205811-460b4aebdf81/volume/service/store_unix.go (about) 1 //go:build linux || freebsd || darwin 2 3 package service // import "github.com/docker/docker/volume/service" 4 5 // normalizeVolumeName is a platform specific function to normalize the name 6 // of a volume. This is a no-op on Unix-like platforms 7 func normalizeVolumeName(name string) string { 8 return name 9 }