Simplify random.Int64 usage with generics

This commit is contained in:
Deluan 2024-05-11 20:10:46 -04:00
parent 0ae2944073
commit 3463d0c208
4 changed files with 7 additions and 5 deletions

View file

@ -51,7 +51,7 @@ func (h *Handler) getRandomImage(ctx context.Context) (string, error) {
if len(list) == 0 {
return "", errors.New("no images available")
}
rnd := random.Int64(int64(len(list)))
rnd := random.Int64(len(list))
return list[rnd], nil
}