14 lines
264 B
Go
14 lines
264 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
namegen "gitea.smoothnet.org/nhyatt/go-predictive-name-generator"
|
|
)
|
|
|
|
func main() {
|
|
n := namegen.New()
|
|
|
|
fmt.Printf("GeneratedName: %s\n", n.GetRandom())
|
|
fmt.Printf("GeneratedName: %s\n", n.GetPredictive("this is a seed string"))
|
|
}
|