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 500a314713
commit 0800650665
No known key found for this signature in database
GPG Key ID: 0DCB9CE0CABAE1B5
1 changed files with 11 additions and 0 deletions

View File

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