mirror of
https://github.com/Jackett/Jackett.git
synced 2025-10-02 00:32:55 +02:00
core: clean up indexer manager code (#13867)
This commit is contained in:
@@ -13,13 +13,13 @@ namespace Jackett.Test.TestHelpers
|
||||
|
||||
public void DeleteIndexer(string name) => throw new NotImplementedException();
|
||||
|
||||
public IEnumerable<IIndexer> GetAllIndexers() => throw new NotImplementedException();
|
||||
public List<IIndexer> GetAllIndexers() => throw new NotImplementedException();
|
||||
|
||||
public IIndexer GetIndexer(string name) => throw new NotImplementedException();
|
||||
|
||||
public IWebIndexer GetWebIndexer(string name) => throw new NotImplementedException();
|
||||
|
||||
public void InitIndexers(IEnumerable<string> path) => throw new NotImplementedException();
|
||||
public void InitIndexers(List<string> path) => throw new NotImplementedException();
|
||||
|
||||
public void SaveConfig(IIndexer indexer, JToken obj) => LastSavedConfig = obj;
|
||||
|
||||
|
Reference in New Issue
Block a user