// Copyright Epic Games, Inc. All Rights Reserved.
using System.Net.Http;
namespace EpicGames.Horde
{
///
/// Provides access to a instances for Horde with a default resiliance pipeline.
///
public interface IHordeHttpMessageHandler
{
///
/// Instance of the http message handler
///
HttpMessageHandler Instance { get; }
}
}