timestampValue wrap to satisfy golang's flag interface.
| 21 | |
| 22 | // timestampValue wrap to satisfy golang's flag interface. |
| 23 | type timestampValue struct { |
| 24 | timestamp *time.Time |
| 25 | hasBeenSet bool |
| 26 | layouts []string |
| 27 | location *time.Location |
| 28 | } |
| 29 | |
| 30 | var _ ValueCreator[time.Time, TimestampConfig] = timestampValue{} |
| 31 |
nothing calls this directly
no outgoing calls
no test coverage detected