blob: 44bc0d9c9cec3a21592827a95e27ca0f79d7c0c6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Copyright © 2021 rsiddharth <s@ricketyspace.net>
// SPDX-License-Identifier: ISC
package lib
import "time"
// Sleeps for atleast `min` but not more than `max`.
func SleepRandom(min, max time.Duration) {
time.Sleep(time.Duration(RandomInt(int64(min), int64(max))))
}
// Sleep for `d` nano seconds.
func Sleep(d time.Duration) {
time.Sleep(d)
}
|