The readme and example folders are full of things like: ``` var client = new Kubernetes(config); ``` Surely this should be `using var client = ...` since `Kubernetes` implements `IDisposable`?
The readme and example folders are full of things like:
Surely this should be
using var client = ...sinceKubernetesimplementsIDisposable?