A RecordWriter writes one record to an archive.
| 30 | |
| 31 | // A RecordWriter writes one record to an archive. |
| 32 | type RecordWriter interface { |
| 33 | WriteRecord(Record) error |
| 34 | } |
| 35 | |
| 36 | // A RecordFormat gives readers and writers for dealing with archives from io |
| 37 | // objects. |
no outgoing calls
no test coverage detected
searching dependent graphs…