initial commit
This commit is contained in:
7
utils/utils.go
Normal file
7
utils/utils.go
Normal file
@@ -0,0 +1,7 @@
|
||||
package utils
|
||||
|
||||
import "math/rand/v2"
|
||||
|
||||
func RandRange(min, max int) int {
|
||||
return rand.IntN(max-min) + min
|
||||
}
|
||||
Reference in New Issue
Block a user