github.com/Prakhar-Agarwal-byte/moby@v0.0.0-20231027092010-a14e3e8ab87e/volume/service/store_unix.go (about) 1 //go:build linux || freebsd || darwin 2 3 package service // import "github.com/Prakhar-Agarwal-byte/moby/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 }