mirror of
https://github.com/clearlinux/docker.git
synced 2026-09-06 13:41:36 +00:00
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))
|
|
}
|