core: clean up indexer manager code (#13867)

This commit is contained in:
Diego Heras
2023-01-07 17:18:24 +01:00
committed by GitHub
parent e7384b73e4
commit 034ca38368
3 changed files with 82 additions and 83 deletions

View File

@@ -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;