(value *int64)
| 2112 | } |
| 2113 | |
| 2114 | func formatUnixSeconds(value *int64) string { |
| 2115 | if value == nil { |
| 2116 | return "" |
| 2117 | } |
| 2118 | return time.Unix(*value, 0).UTC().Format(time.RFC3339) |
| 2119 | } |
| 2120 | |
| 2121 | func formatTimePtr(value *time.Time) string { |
| 2122 | if value == nil { |
no outgoing calls
no test coverage detected