systemClock implements default Clock that uses system time.
| 38 | |
| 39 | // systemClock implements default Clock that uses system time. |
| 40 | type systemClock struct{} |
| 41 | |
| 42 | func (systemClock) Now() time.Time { |
| 43 | return time.Now() |
nothing calls this directly
no outgoing calls
no test coverage detected