using VaultSharp; using VaultSharp.V1.Commons; namespace Vault.Demo.hashicorp.Console.Handler; internal interface IValueClientProvider { IVaultClient GetValueClient(); Task> GetSecret(IVaultClient client); }