mirror of
https://github.com/moby/moby.git
synced 2026-01-16 02:11:34 +00:00
10 lines
193 B
Go
10 lines
193 B
Go
// +build linux freebsd darwin openbsd
|
|
|
|
package layer
|
|
|
|
import "github.com/docker/docker/pkg/stringid"
|
|
|
|
func (ls *layerStore) mountID(name string) string {
|
|
return stringid.GenerateRandomID()
|
|
}
|