mirror of
https://github.com/Radarr/Radarr
synced 2025-01-31 11:53:06 +00:00
13 lines
No EOL
296 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
} |