6 lines
125 B
C#
6 lines
125 B
C#
namespace IdentityShroud.Core.Contracts;
|
|
|
|
public interface ISecretProvider
|
|
{
|
|
Task<string> GetSecretAsync(string name);
|
|
}
|