Sonarr/src/NzbDrone.Core/Rest/IRestClientFactory.cs

10 lines
154 B
C#

using RestSharp;
namespace NzbDrone.Core.Rest
{
public interface IRestClientFactory
{
RestClient BuildClient(string baseUrl);
}
}