v/vlib/time/misc/misc.v

14 lines
219 B
V
Raw Normal View History

module misc
import rand
import time
const (
start_time_unix = time.now().unix
)
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*.
pub fn random() time.Time {
2020-06-09 15:06:07 +02:00
return time.unix(int(rand.u64n(start_time_unix)))
}