Add authorization and key-pairing
All checks were successful
Build, Push and Run Container / build (push) Successful in 30s
All checks were successful
Build, Push and Run Container / build (push) Successful in 30s
This commit is contained in:
19
Source/ProofOfConcept/Configurator.cs
Normal file
19
Source/ProofOfConcept/Configurator.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
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
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user