RealClock implements the Clock interface using the system clock. This is the implementation that should be used in production code.
| 5 | // RealClock implements the Clock interface using the system clock. |
| 6 | // This is the implementation that should be used in production code. |
| 7 | type RealClock struct { |
| 8 | // Intentionally empty - no state needed |
| 9 | } |
| 10 | |
| 11 | // New creates a new RealClock that uses the system time. |
| 12 | // This is the standard clock implementation for production use. |
nothing calls this directly
no outgoing calls
no test coverage detected