mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
13 lines
296 B
C#
13 lines
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)
|
|
{
|
|
}
|
|
}
|
|
} |