mirror of
https://github.com/Sonarr/Sonarr
synced 2026-01-31 20:01:47 +01: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)
|
|
{
|
|
}
|
|
}
|
|
} |