12 lines
143 B
Go
12 lines
143 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/docker/docker/pkg/namesgenerator"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
fmt.Println(namesgenerator.GetRandomName(0))
|
||
|
}
|