(key string)
| 151 | } |
| 152 | |
| 153 | func (cr *goGitConfigReader) ReadTimestamp(key string) (time.Time, error) { |
| 154 | value, err := cr.ReadString(key) |
| 155 | if err != nil { |
| 156 | return time.Time{}, err |
| 157 | } |
| 158 | return ParseTimestamp(value) |
| 159 | } |
| 160 | |
| 161 | var _ ConfigWrite = &goGitConfigWriter{} |
| 162 |
nothing calls this directly
no test coverage detected