|
module misc
|
|
|
|
import rand
|
|
import time
|
|
|
|
const (
|
|
start_time_unix = time.now().unix // start_time_unix is set when the program is started.
|
|
)
|
|
|
|
// random returns a random time struct in *the past*.
|
|
pub fn random() time.Time {
|
|
return time.unix(int(rand.u64n(misc.start_time_unix)))
|
|
}
|