mirror of
https://github.com/docker/docs.git
synced 2026-03-31 00:08:55 +07: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))
|
|
}
|