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.Commands;
internal static class ExitCodes
{
public const int Success = 0;
public const int KeyNotFound = 1;
public const int KeyNotRemoved = 2;
}