mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
0800650665
Signed-off-by: Manfred Touron <m@42.am>
11 lines
143 B
Go
11 lines
143 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/docker/docker/pkg/namesgenerator"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println(namesgenerator.GetRandomName(0))
|
|
}
|