BasicInteractiveShell represents non-PTY interactive shell sampling metadata
| 13 | |
| 14 | // BasicInteractiveShell represents non-PTY interactive shell sampling metadata |
| 15 | type BasicInteractiveShell struct { |
| 16 | item *Item |
| 17 | variables []string |
| 18 | stdoutCh chan string |
| 19 | stderrCh chan string |
| 20 | stdin io.WriteCloser |
| 21 | cmd *exec.Cmd |
| 22 | errCount int |
| 23 | timeout time.Duration |
| 24 | } |
| 25 | |
| 26 | func (s *BasicInteractiveShell) init() error { |
| 27 |
nothing calls this directly
no outgoing calls
no test coverage detected