| 23 | } |
| 24 | |
| 25 | type kubeClientWrapper struct { |
| 26 | client.Client |
| 27 | inMemoryLock sync.RWMutex |
| 28 | inMemory map[typedObjectKey]client.Object |
| 29 | } |
| 30 | |
| 31 | func NewKubeClientWrapper(kube client.Client) KubeClientWrapper { |
| 32 | return &kubeClientWrapper{ |
nothing calls this directly
no outgoing calls
no test coverage detected