Jackett/src/Jackett.Common/Indexers/CinemaZ.cs

23 lines
738 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 CinemaZ : AvistazTracker
{
public CinemaZ(IIndexerConfigurationService configService, WebClient webClient, Logger logger, IProtectionService protectionService)
: base(name: "CinemaZ",
desc: "Part of the Avistaz network.",
link: "https://cinemaz.to/",
configService: configService,
logger: logger,
protectionService: protectionService,
webClient: webClient
)
{
Type = "private";
}
}
}