Files
Jackett-Jackett/src/Jackett.Common/Services/Interfaces/IIndexerManagerService.cs
Alessio Gogna 66bec102db [Feature] Filter Meta Indexer by tag and by language (#11662). resolves #8884 resolves #7170 resolves #4787 resolves #2185
* bump to 0.18.*

Also partially addresses https://github.com/Jackett/Jackett/issues/661 (if user adds `enabled` and `disabled` tags).

Co-authored-by: garfield69 <garfieldsixtynine@gmail.com>
Co-authored-by: ilike2burnthing <59480337+ilike2burnthing@users.noreply.github.com>
2021-05-08 21:24:18 +01:00

19 lines
506 B
C#

using System.Collections.Generic;
using System.Threading.Tasks;
using Jackett.Common.Indexers;
namespace Jackett.Common.Services.Interfaces
{
public interface IIndexerManagerService
{
Task TestIndexer(string name);
void DeleteIndexer(string name);
IIndexer GetIndexer(string name);
IWebIndexer GetWebIndexer(string name);
IEnumerable<IIndexer> GetAllIndexers();
void InitIndexers(IEnumerable<string> path);
void InitMetaIndexers();
}
}