cicd
This commit is contained in:
17
PARR.API/Installers/SettingsInstaller.cs
Normal file
17
PARR.API/Installers/SettingsInstaller.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
namespace PARR.API.Installers
|
||||
{
|
||||
/// <summary>
|
||||
/// Биндинги из конфига appsettings
|
||||
/// </summary>
|
||||
public static class SettingsInstaller
|
||||
{
|
||||
public static void InstallSettings(this IServiceCollection services, IConfiguration configuration)
|
||||
{
|
||||
//var storageSettings = new StorageSettings();
|
||||
//configuration.GetSection(nameof(StorageSettings)).Bind(storageSettings);
|
||||
//services.AddSingleton(storageSettings);
|
||||
|
||||
//TODO: add other
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user