package time import "time" type RealClock struct{} func (RealClock) Now() time.Time { return time.Now() } func (RealClock) After(d time.Duration) <-chan time.Time { return time.After(d) }