(remote *Remote, transport *Transport)
| 50 | } |
| 51 | |
| 52 | func sshSmartSubtransportFactory(remote *Remote, transport *Transport) (SmartSubtransport, error) { |
| 53 | return &sshSmartSubtransport{ |
| 54 | transport: transport, |
| 55 | }, nil |
| 56 | } |
| 57 | |
| 58 | type sshSmartSubtransport struct { |
| 59 | transport *Transport |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…