2013-04-28 19:46:13 +00:00
|
|
|
|
using NzbDrone.Api.Indexers;
|
|
|
|
|
using RestSharp;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Integration.Test.Client
|
|
|
|
|
{
|
|
|
|
|
public class ReleaseClient : ClientBase<ReleaseResource>
|
|
|
|
|
{
|
2013-09-21 02:07:42 +00:00
|
|
|
|
public ReleaseClient(IRestClient restClient, string apiKey)
|
|
|
|
|
: base(restClient, apiKey)
|
2013-04-28 19:46:13 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|