1package monotime
2
3import "time"
4
5var initTime = time.Now()
6
7func Now() time.Time { return initTime.Add(elapsed()) }
8