()
| 46 | } |
| 47 | |
| 48 | func (s *lazyClient) init() error { |
| 49 | s.initClient.Do(func() { |
| 50 | s.client, s.clientErr = s.clientFn() |
| 51 | }) |
| 52 | return s.clientErr |
| 53 | } |
| 54 | |
| 55 | // secretClient implements a corev1.SecretsInterface |
| 56 | type secretClient struct{ *lazyClient } |