Merge pull request #15201 from moul/names-generator-bin

pkg/namesgenerator: add a 'names-generator' binary
This commit is contained in:
Michael Crosby 2015-07-31 13:09:02 -04:00
commit 0659ceb0d0

View file

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