Write implement io.WriteCloser
(p []byte)
| 49 | |
| 50 | // Write implement io.WriteCloser |
| 51 | func (c ContainerStdin) Write(p []byte) (n int, err error) { |
| 52 | return c.Conn.Write(p) |
| 53 | } |
| 54 | |
| 55 | // Close implement io.WriteCloser |
| 56 | func (c ContainerStdin) Close() error { |
nothing calls this directly
no outgoing calls
no test coverage detected