Random number generator seed doesn't have enough entropy GO-S1033
Security
Major
1 occurrence in this check
Time based seeds have insufficient entropy
54}
55
56func getRandomIndex(max int) int {
57	rand.Seed(time.Now().UnixNano())58	return rand.Intn(max + 1)
59}
60