| 9 | ) |
| 10 | |
| 11 | type processStream struct { |
| 12 | processID string |
| 13 | conn net.Conn |
| 14 | |
| 15 | sync.Mutex |
| 16 | } |
| 17 | |
| 18 | func (s *processStream) Write(data []byte) (int, error) { |
| 19 | d := string(data) |
nothing calls this directly
no outgoing calls
no test coverage detected