mirror of
https://github.com/Lidarr/Lidarr
synced 2026-03-04 11:32:39 +01:00
13 lines
321 B
C#
13 lines
321 B
C#
using NzbDrone.Api.Indexers;
|
|
using RestSharp;
|
|
|
|
namespace NzbDrone.Integration.Test.Client
|
|
{
|
|
public class ReleasePushClient : ClientBase<ReleaseResource>
|
|
{
|
|
public ReleasePushClient(IRestClient restClient, string apiKey)
|
|
: base(restClient, apiKey, "release/push")
|
|
{
|
|
}
|
|
}
|
|
}
|