fixed server side indexer issue

This commit is contained in:
kay.one 2013-05-02 22:24:52 -07:00
commit 1877f70403
15 changed files with 104 additions and 63 deletions

View file

@ -0,0 +1,16 @@
using NzbDrone.Api.Indexers;
using RestSharp;
namespace NzbDrone.Integration.Test.Client
{
public class IndexerClient : ClientBase<IndexerResource>
{
public IndexerClient(IRestClient restClient)
: base(restClient)
{
}
}
}