Jackett/src/Jackett.Common/Indexers/Avistaz.cs

23 lines
726 B
C#

using Jackett.Common.Indexers.Abstract;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils.Clients;
using NLog;
namespace Jackett.Common.Indexers
{
public class Avistaz : AvistazTracker
{
public Avistaz(IIndexerConfigurationService configService, WebClient webClient, Logger logger, IProtectionService protectionService)
: base(name: "Avistaz",
desc: "Aka AsiaTorrents",
link: "https://avistaz.to/",
configService: configService,
logger: logger,
protectionService: protectionService,
webClient: webClient
)
{
Type = "private";
}
}
}