1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-01-31 11:53:06 +00:00
Radarr/NzbDrone.Integration.Test/Client/IndexerClient.cs
2013-09-20 19:07:42 -07:00

13 lines
No EOL
296 B
C#

using NzbDrone.Api.Indexers;
using RestSharp;
namespace NzbDrone.Integration.Test.Client
{
public class IndexerClient : ClientBase<IndexerResource>
{
public IndexerClient(IRestClient restClient, string apiKey)
: base(restClient, apiKey)
{
}
}
}