10 lines
188 B
Go
10 lines
188 B
Go
// +build linux freebsd darwin
|
|
|
|
package layer
|
|
|
|
import "github.com/hyperhq/hypercli/pkg/stringid"
|
|
|
|
func (ls *layerStore) mountID(name string) string {
|
|
return stringid.GenerateRandomID()
|
|
}
|