pkg/namesgenerator: add a 'names-generator' binary

Signed-off-by: Manfred Touron <m@42.am>
Upstream-commit: 08006506651498cd8647123daadc7abde37ecb7d
Component: engine
This commit is contained in:
Manfred Touron
2015-07-31 13:07:40 +02:00
parent 0514f6080b
commit 8a201393ad

View File

@ -0,0 +1,11 @@
package main
import (
"fmt"
"github.com/docker/docker/pkg/namesgenerator"
)
func main() {
fmt.Println(namesgenerator.GetRandomName(0))
}