Miscelanious trials

This commit is contained in:
eelke 2026-02-06 19:58:01 +01:00
commit f99c97f392
33 changed files with 881 additions and 0 deletions

View file

@ -0,0 +1,6 @@
namespace IdentityShroud.Core.Contracts;
public interface ISecretProvider
{
Task<string> GetSecretAsync(string name);
}