Files
elect/util.go
2023-06-11 09:57:48 -07:00

11 lines
162 B
Go

package elect
import (
"math/rand"
"time"
)
func RandDurationN(n time.Duration) time.Duration {
return time.Duration(rand.Int63n(int64(n))) //nolint:gosec
}