1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-02-25 07:23:16 +00:00
Sonarr/NzbDrone.Api/Indexers/IndexerModule.cs
2013-10-01 10:27:22 -07:00

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")
{
}
}
}