mirror of
https://github.com/MontFerret/ferret.git
synced 2025-04-07 07:19:58 +02:00
12 lines
186 B
Go
12 lines
186 B
Go
package input
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
|
)
|
|
|
|
func randomDuration(delay int) time.Duration {
|
|
return time.Duration(core.Random2(float64(delay)))
|
|
}
|