9 lines
238 B
C#
9 lines
238 B
C#
using VaultSharp;
|
|
using VaultSharp.V1.Commons;
|
|
|
|
namespace Vault.Demo.hashicorp.Console.Handler;
|
|
internal interface IValueClientProvider
|
|
{
|
|
IVaultClient GetValueClient();
|
|
Task<Secret<SecretData>> GetSecret(IVaultClient client);
|
|
} |