Helper function that returns Unix time in seconds
()
| 22 | |
| 23 | // Helper function that returns Unix time in seconds |
| 24 | func getUnixTime() uint32 { |
| 25 | return uint32(time.Now().Unix()) |
| 26 | } |
| 27 | |
| 28 | // Default timer reads Unix time always when requested |
| 29 | type defaultTimer struct{} |
no test coverage detected
searching dependent graphs…