2020-01-07 12:58:24 +01:00
|
|
|
module misc
|
|
|
|
|
|
|
|
import rand
|
|
|
|
import time
|
|
|
|
|
|
|
|
const (
|
2021-01-13 15:30:54 +01:00
|
|
|
start_time_unix = time.now().unix // start_time_unix is set when the program is started.
|
2020-01-07 12:58:24 +01:00
|
|
|
)
|
2020-12-06 15:19:39 +01:00
|
|
|
|
2020-02-06 14:19:44 +01:00
|
|
|
// random returns a random time struct in *the past*.
|
2020-01-07 12:58:24 +01:00
|
|
|
pub fn random() time.Time {
|
2021-08-04 12:12:02 +02:00
|
|
|
return time.unix(int(rand.i64n(misc.start_time_unix)))
|
2020-01-07 12:58:24 +01:00
|
|
|
}
|