Read implement io.ReadCloser
(p []byte)
| 31 | |
| 32 | // Read implement io.ReadCloser |
| 33 | func (l ContainerStdout) Read(p []byte) (n int, err error) { |
| 34 | return l.Reader.Read(p) |
| 35 | } |
| 36 | |
| 37 | // Close implement io.ReadCloser |
| 38 | func (l ContainerStdout) Close() error { |
nothing calls this directly
no outgoing calls
no test coverage detected