Merge pull request #43211 from thaJeztah/remove_names_generator_binary

pkg/namesgenerator: remove names-generator binary
This commit is contained in:
Tianon Gravi 2022-02-04 06:46:18 -08:00 committed by GitHub
commit f0e057f0e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 14 deletions

View File

@ -1,14 +0,0 @@
package main
import (
"fmt"
"math/rand"
"time"
"github.com/docker/docker/pkg/namesgenerator"
)
func main() {
rand.Seed(time.Now().UnixNano())
fmt.Println(namesgenerator.GetRandomName(0))
}