| 25 | } |
| 26 | |
| 27 | type sshCache struct { |
| 28 | endpoints map[string]*sshAuthResponse |
| 29 | ssh SSHResolver |
| 30 | } |
| 31 | |
| 32 | func (c *sshCache) Resolve(e Endpoint, method string) (sshAuthResponse, error) { |
| 33 | if len(e.SSHMetadata.UserAndHost) == 0 { |
nothing calls this directly
no outgoing calls
no test coverage detected