Timer holds representation of current time.
| 7 | |
| 8 | // Timer holds representation of current time. |
| 9 | type Timer interface { |
| 10 | // Give current time (in seconds) |
| 11 | Now() uint32 |
| 12 | } |
| 13 | |
| 14 | // Timer that must be stopped. |
| 15 | type StoppableTimer interface { |
no outgoing calls
no test coverage detected
searching dependent graphs…