| 194 | zebra` |
| 195 | |
| 196 | type Generator struct { |
| 197 | r *rand.Rand |
| 198 | } |
| 199 | |
| 200 | func NewGenerator() Generator { |
| 201 | return Generator{r: rand.New(rand.NewSource(time.Now().UnixNano()))} |
nothing calls this directly
no outgoing calls
no test coverage detected