using System.Net; using System.Threading.Tasks; namespace NzbDrone.Common.Http.Dispatchers { public interface IHttpDispatcher { Task GetResponseAsync(HttpRequest request, CookieContainer cookies); } }