New: (Indexer) DesiGaane

This commit is contained in:
handokota 2026-04-04 13:34:03 +07:00
parent 0ffcfccf1d
commit 1069cb5421

View file

@ -0,0 +1,32 @@
using NLog;
using NzbDrone.Core.Configuration;
using NzbDrone.Core.Indexers.Definitions.Gazelle;
using NzbDrone.Core.Messaging.Events;
namespace NzbDrone.Core.Indexers.Definitions;
public class DesiGaane : GazelleBase<GazelleSettings>
{
public override string Name => "DesiGaane";
public override string[] IndexerUrls => new[] { "https://desigaane.rocks/" };
public override string Description => "DesiGaane is a Private Torrent Tracker for DESI MUSIC";
public override IndexerPrivacy Privacy => IndexerPrivacy.Private;
public DesiGaane(IIndexerHttpClient httpClient,
IEventAggregator eventAggregator,
IIndexerStatusService indexerStatusService,
IConfigService configService,
Logger logger)
: base(httpClient, eventAggregator, indexerStatusService, configService, logger)
{
}
protected override IndexerCapabilities SetCapabilities()
{
var caps = new IndexerCapabilities();
caps.Categories.AddCategoryMapping(1, NewznabStandardCategory.Audio, "Music");
return caps;
}
}