feat: initial cli implementation

This commit is contained in:
Stevan Freeborn
2026-04-17 15:28:59 -05:00
parent ab57ac5a13
commit ba927c0e18
41 changed files with 1124 additions and 17 deletions
@@ -0,0 +1,8 @@
namespace StevanFreeborn.Extensions.Configuration.Secure.Cli.Configuration;
internal sealed class SecureConfigProfile
{
public StorageProviderOptions Storage { get; set; } = new();
public KeyProviderOptions Key { get; set; } = new();
public CryptoProviderOptions Crypto { get; set; } = new();
}