Shell invokes shell commands to talk with a remote credentials-helper.
| 43 | |
| 44 | // Shell invokes shell commands to talk with a remote credentials-helper. |
| 45 | type Shell struct { |
| 46 | cmd *exec.Cmd |
| 47 | } |
| 48 | |
| 49 | // Output returns responses from the remote credentials-helper. |
| 50 | func (s *Shell) Output() ([]byte, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected