mirror of
https://github.com/containers/skopeo.git
synced 2025-04-27 19:05:32 +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()
|
|
}
|