.NET Core preparation: Access ServerConfig without using JackettModule

This commit is contained in:
flightlevel
2018-06-17 11:48:59 +10:00
parent f1d774aa07
commit cf3848a54f
5 changed files with 61 additions and 54 deletions

View File

@@ -1,4 +1,5 @@
using System.Collections.Generic;
using Jackett.Common.Models.Config;
using System.Collections.Generic;
namespace Jackett.Common.Services.Interfaces
{
@@ -15,5 +16,6 @@ namespace Jackett.Common.Services.Interfaces
List<string> GetCardigannDefinitionsFolders();
void CreateOrMigrateSettings();
void PerformMigration();
ServerConfig BuildServerConfig(RuntimeSettings runtimeSettings);
}
}