StandardCounter is the standard implementation of a Counter
| 21 | |
| 22 | // StandardCounter is the standard implementation of a Counter |
| 23 | type StandardCounter struct { |
| 24 | count int64 |
| 25 | startTime time.Time |
| 26 | } |
| 27 | |
| 28 | func (c *StandardCounter) StartTime() time.Time { |
| 29 | return c.startTime |
nothing calls this directly
no outgoing calls
no test coverage detected