(ssh SSHResolver)
| 18 | } |
| 19 | |
| 20 | func withSSHCache(ssh SSHResolver) SSHResolver { |
| 21 | return &sshCache{ |
| 22 | endpoints: make(map[string]*sshAuthResponse), |
| 23 | ssh: ssh, |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | type sshCache struct { |
| 28 | endpoints map[string]*sshAuthResponse |
no outgoing calls