All checks were successful
Build, Push and Run Container / build (push) Successful in 30s
19 lines
397 B
C#
19 lines
397 B
C#
namespace ProofOfConcept;
|
|
|
|
public class Configurator
|
|
{
|
|
private readonly IHostEnvironment environment;
|
|
private readonly IConfiguration configuration;
|
|
|
|
public Configurator(IHostEnvironment environment, IConfiguration configuration)
|
|
{
|
|
this.environment = environment;
|
|
this.configuration = configuration;
|
|
}
|
|
|
|
|
|
}
|
|
|
|
public static class ConfiguratorExtensions
|
|
{
|
|
} |