Add HttpClient property to the IKubernetes interface (#548)

* Add HttpClient property to the Kubernetes interface

* PR feedback
This commit is contained in:
Frederik Carlier
2021-01-26 19:49:40 -08:00
committed by GitHub
parent 143db15d03
commit aeb3a0bcc6

View File

@@ -0,0 +1,12 @@
using System.Net.Http;
namespace k8s
{
public partial interface IKubernetes
{
/// <summary>
/// Gets the <see cref="HttpClient"/> used for making HTTP requests.
/// </summary>
HttpClient HttpClient { get; }
}
}