Extractors define the interface needed to extract file content
| 9 | |
| 10 | // Extractors define the interface needed to extract file content |
| 11 | type Extractor interface { |
| 12 | Match(filename string) bool |
| 13 | Extract(filename string, file io.ReadSeeker, maxFileSize int64) (string, error) |
| 14 | Name() string |
| 15 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…