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