Add Random Generator

This commit is contained in:
Dan Jones 2025-03-15 15:36:43 -05:00
commit 1677a692d1
8 changed files with 142 additions and 53 deletions

View file

@ -50,16 +50,3 @@ func ExampleMultiGeneratorInOrder() {
// goodbye.txt
// hello.txt
}
func ExampleUUID() {
option := nomino.WithGenerator(nomino.UUID())
str, _ := nomino.Make(nomino.NewConfig(option))
fmt.Println(str)
str, _ = nomino.Make(nomino.NewConfig(option))
fmt.Println(str)
str, _ = nomino.Make(nomino.NewConfig(option))
fmt.Println(str)
}