PrintingKubeClient implements KubeClient, but simply prints the reader to the given output.
| 32 | // PrintingKubeClient implements KubeClient, but simply prints the reader to |
| 33 | // the given output. |
| 34 | type PrintingKubeClient struct { |
| 35 | Out io.Writer |
| 36 | LogOutput io.Writer |
| 37 | } |
| 38 | |
| 39 | // PrintingKubeWaiter implements kube.Waiter, but simply prints the reader to the given output |
| 40 | type PrintingKubeWaiter struct { |
nothing calls this directly
no outgoing calls
no test coverage detected