mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 10:32:35 +01:00
41 lines
1.1 KiB
C#
41 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace NzbDrone.Core.Indexers.Wombles
|
|
{
|
|
public class Wombles : IndexerBase
|
|
{
|
|
public override string Name
|
|
{
|
|
get { return "WomblesIndex"; }
|
|
}
|
|
|
|
public override IParseFeed Parser
|
|
{
|
|
get
|
|
{
|
|
return new WomblesParser();
|
|
}
|
|
}
|
|
|
|
public override IEnumerable<string> RecentFeed
|
|
{
|
|
get { yield return "http://nzb.isasecret.com/rss/?sec=TV&fr=false"; }
|
|
}
|
|
|
|
public override IEnumerable<string> GetEpisodeSearchUrls(string seriesTitle, int tvRageId, int seasonNumber, int episodeNumber)
|
|
{
|
|
return new List<string>();
|
|
}
|
|
|
|
public override IEnumerable<string> GetSeasonSearchUrls(string seriesTitle, int tvRageId, int seasonNumber)
|
|
{
|
|
return new List<string>();
|
|
}
|
|
|
|
public override IEnumerable<string> GetDailyEpisodeSearchUrls(string seriesTitle, int tvRageId, DateTime date)
|
|
{
|
|
return new List<string>();
|
|
}
|
|
}
|
|
} |