mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
18 lines
579 B
C#
18 lines
579 B
C#
using NzbDrone.Core.Indexers;
|
|
using Radarr.Http;
|
|
|
|
namespace Radarr.Api.V3.Indexers
|
|
{
|
|
[V3ApiController]
|
|
public class IndexerController : ProviderControllerBase<IndexerResource, IndexerBulkResource, IIndexer, IndexerDefinition>
|
|
{
|
|
public static readonly IndexerResourceMapper ResourceMapper = new ();
|
|
public static readonly IndexerBulkResourceMapper BulkResourceMapper = new ();
|
|
|
|
public IndexerController(IndexerFactory indexerFactory)
|
|
: base(indexerFactory, "indexer", ResourceMapper, BulkResourceMapper)
|
|
{
|
|
}
|
|
}
|
|
}
|