github.com/rita33cool1/iot-system-gateway@v0.0.0-20200911033302-e65bde238cc5/docker-engine/volume/store/store_unix.go (about)

     1  // +build linux freebsd
     2  
     3  package store // import "github.com/docker/docker/volume/store"
     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  }