6 lines
136 B
C#
6 lines
136 B
C#
namespace VaultService;
|
|
|
|
public interface IVaultService
|
|
{
|
|
Task<string> GetSecretAsync(string path, string key, string mountPoint);
|
|
} |