mirror of
https://github.com/docker/docs.git
synced 2026-03-28 06:49:00 +07: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()
|
|
}
|