Psytorrents: removed (dead)

This commit is contained in:
kaso17 2017-12-01 14:15:54 +01:00
parent 4dc07fbc26
commit f6e37d0b83
2 changed files with 0 additions and 30 deletions

View File

@ -210,7 +210,6 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
* PolishTracker
* Pretome
* PrivateHD
* Psytorrents
* PTFiles
* Redacted (PassTheHeadphones)
* RevolutionTT

View File

@ -1,29 +0,0 @@
using Jackett.Indexers.Abstract;
using Jackett.Models;
using Jackett.Services.Interfaces;
using Jackett.Utils.Clients;
using NLog;
namespace Jackett.Indexers
{
public class Psytorrents : GazelleTracker
{
public Psytorrents(IIndexerConfigurationService configService, WebClient webClient, Logger logger, IProtectionService protectionService)
: base(name: "Psytorrents",
desc: "Psytorrents (PSY) is a Private Torrent Tracker for ELECTRONIC MUSIC",
link: "https://psytorrents.info/",
configService: configService,
logger: logger,
protectionService: protectionService,
webClient: webClient
)
{
Language = "en-us";
Type = "private";
AddCategoryMapping(1, TorznabCatType.Audio, "Music");
AddCategoryMapping(2, TorznabCatType.Movies, "Movies");
AddCategoryMapping(3, TorznabCatType.PC0day, "App");
}
}
}