| 324 | } |
| 325 | |
| 326 | type FileReader struct { |
| 327 | LineChan chan string |
| 328 | CloseSignal chan struct{} |
| 329 | } |
| 330 | |
| 331 | func NewFileReader(path string) (*FileReader, error) { |
| 332 | file, err := os.Open(path) |
nothing calls this directly
no outgoing calls
no test coverage detected