(p []byte)
| 54 | } |
| 55 | |
| 56 | func (lcmd *LocalCommand) Read(p []byte) (n int, err error) { |
| 57 | return lcmd.pty.Read(p) |
| 58 | } |
| 59 | |
| 60 | func (lcmd *LocalCommand) Write(p []byte) (n int, err error) { |
| 61 | return lcmd.pty.Write(p) |
no outgoing calls
no test coverage detected