You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
473 B
17 lines
473 B
3 years ago
|
using Lidarr.Http;
|
||
|
using NzbDrone.Core.Indexers;
|
||
7 years ago
|
|
||
7 years ago
|
namespace Lidarr.Api.V1.Indexers
|
||
7 years ago
|
{
|
||
3 years ago
|
[V1ApiController]
|
||
|
public class IndexerController : ProviderControllerBase<IndexerResource, IIndexer, IndexerDefinition>
|
||
7 years ago
|
{
|
||
|
public static readonly IndexerResourceMapper ResourceMapper = new IndexerResourceMapper();
|
||
|
|
||
3 years ago
|
public IndexerController(IndexerFactory indexerFactory)
|
||
7 years ago
|
: base(indexerFactory, "indexer", ResourceMapper)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
5 years ago
|
}
|