blob: 24cb88009220c7954c4e17fdfc0c9e98c9dc1ef6 [file] [log] [blame]
//go:build linux || freebsd || darwin || openbsd
// +build linux freebsd darwin openbsd
package layer // import "github.com/docker/docker/layer"
import "github.com/docker/docker/pkg/stringid"
func (ls *layerStore) mountID(name string) string {
return stringid.GenerateRandomID()
}