Jackett/src/Jackett.Common/Indexers/HDForever.cs

29 lines
966 B
C#
Raw Normal View History

using Jackett.Common.Indexers.Abstract;
using Jackett.Common.Models;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils.Clients;
using NLog;
2017-05-20 15:08:10 +00:00
namespace Jackett.Common.Indexers
2017-05-20 15:08:10 +00:00
{
public class HDForever : GazelleTracker
2017-05-20 15:08:10 +00:00
{
public HDForever(IIndexerConfigurationService configService, WebClient webClient, Logger logger, IProtectionService protectionService)
2017-05-20 15:08:10 +00:00
: base(name: "HD-Forever",
desc: "HD-Forever (HD-F) is a FRENCH Private Torrent Tracker for HD MOVIES",
2017-05-20 15:08:10 +00:00
link: "https://hdf.world/",
configService: configService,
2017-05-20 15:08:10 +00:00
logger: logger,
protectionService: protectionService,
webClient: webClient,
supportsFreeleechTokens: true
2017-05-20 15:08:10 +00:00
)
{
Language = "fr-fr";
Type = "private";
AddCategoryMapping(1, TorznabCatType.MoviesHD, "Movies/HD");
}
}
}