Interval describes an interval between two timestamps.
| 46 | |
| 47 | // Interval describes an interval between two timestamps. |
| 48 | type Interval struct { |
| 49 | Start, End Time |
| 50 | } |
| 51 | |
| 52 | // Now returns the current time as a Time. |
| 53 | func Now() Time { |
nothing calls this directly
no outgoing calls
no test coverage detected