Lidarr/NzbDrone.Integration.Test/Client/IndexerClient.cs

13 lines
296 B
C#
Raw Normal View History

2013-05-03 05:24:52 +00:00
using NzbDrone.Api.Indexers;
using RestSharp;
namespace NzbDrone.Integration.Test.Client
{
public class IndexerClient : ClientBase<IndexerResource>
{
2013-09-21 02:07:42 +00:00
public IndexerClient(IRestClient restClient, string apiKey)
: base(restClient, apiKey)
2013-05-03 05:24:52 +00:00
{
}
}
}