1
0
times/sys.go

14 lines
178 B
Go
Raw Normal View History

2026-03-04 21:11:49 +01:00
package times
import "time"
type sys struct {}
func (sys) Now() time.Time {
return time.Now()
}
func (sys) After(d time.Duration) <-chan time.Time {
return time.After(d)
}