(value *time.Time)
| 2119 | } |
| 2120 | |
| 2121 | func formatTimePtr(value *time.Time) string { |
| 2122 | if value == nil { |
| 2123 | return "" |
| 2124 | } |
| 2125 | return formatTime(*value) |
| 2126 | } |
| 2127 | |
| 2128 | func optionalString(value *string) string { |
| 2129 | if value == nil { |
no test coverage detected