| 59 | } |
| 60 | |
| 61 | type addr2LinerJob struct { |
| 62 | cmd *exec.Cmd |
| 63 | in io.WriteCloser |
| 64 | out *bufio.Reader |
| 65 | } |
| 66 | |
| 67 | func (a *addr2LinerJob) write(s string) error { |
| 68 | _, err := fmt.Fprint(a.in, s+"\n") |
nothing calls this directly
no outgoing calls
no test coverage detected