mirror of
https://github.com/Sonarr/Sonarr
synced 2025-02-25 07:23:16 +00:00
12 lines
No EOL
306 B
C#
12 lines
No EOL
306 B
C#
using NzbDrone.Core.Indexers;
|
|
|
|
namespace NzbDrone.Api.Indexers
|
|
{
|
|
public class IndexerModule : ProviderModuleBase<ProviderResource, IIndexer, IndexerDefinition>
|
|
{
|
|
public IndexerModule(IndexerFactory indexerFactory)
|
|
: base(indexerFactory, "indexer")
|
|
{
|
|
}
|
|
}
|
|
} |