(unixMs int64)
| 104 | } |
| 105 | |
| 106 | func convertMsToTime(unixMs int64) time.Time { |
| 107 | return time.Unix(0, unixMs*int64(time.Millisecond)) |
| 108 | } |
| 109 | |
| 110 | func convertMsToDuration(unixMs int64) time.Duration { |
| 111 | return time.Duration(unixMs) * time.Millisecond |
no outgoing calls