()
| 29 | type defaultTimer struct{} |
| 30 | |
| 31 | func (timer defaultTimer) Now() uint32 { |
| 32 | return getUnixTime() |
| 33 | } |
| 34 | |
| 35 | // Cached timer stores Unix time every second and returns the cached value |
| 36 | type cachedTimer struct { |
nothing calls this directly
no test coverage detected