Signed-off-by: Manfred Touron <m@42.am> Upstream-commit: 08006506651498cd8647123daadc7abde37ecb7d Component: engine
12 lines
143 B
Go
12 lines
143 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/docker/docker/pkg/namesgenerator"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println(namesgenerator.GetRandomName(0))
|
|
}
|