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

Signed-off-by: Manfred Touron <m@42.am>
This commit is contained in:
Manfred Touron 2015-07-31 13:07:40 +02:00
parent b49fc92969
commit 6ab7a44610

View file

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