| 198 | func NewKeychainFromHelper(h Helper) Keychain { return wrapper{h} } |
| 199 | |
| 200 | type wrapper struct{ h Helper } |
| 201 | |
| 202 | func (w wrapper) Resolve(r Resource) (Authenticator, error) { |
| 203 | return w.ResolveContext(context.Background(), r) |
nothing calls this directly
no outgoing calls
no test coverage detected