multiple testing concepts
This commit is contained in:
13
cmd/name-generator/main.go
Normal file
13
cmd/name-generator/main.go
Normal file
@ -0,0 +1,13 @@
|
||||
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"))
|
||||
}
|
Reference in New Issue
Block a user