13 lines
256 B
C#
13 lines
256 B
C#
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; }
|
|
}
|
|
}
|