mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-15 11:40:36 +03:00
12 lines
163 B
Go
12 lines
163 B
Go
package number
|
|
|
|
import (
|
|
"crypto/rand"
|
|
"math/big"
|
|
)
|
|
|
|
func RandomInt64(max int64) int64 {
|
|
rnd, _ := rand.Int(rand.Reader, big.NewInt(max))
|
|
return rnd.Int64()
|
|
}
|