mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-14 07:54:08 +02:00

* 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>
19 lines
506 B
C#
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();
|
|
}
|
|
}
|