aboutsummaryrefslogtreecommitdiff
path: root/dropped/docker/crupest-api/CrupestApi/CrupestApi.Commons/Secrets/ISecretService.cs
blob: 83025f8a9374b556fbad8a0b2f31e387eaa85976 (plain)
1
2
3
4
5
6
7
8
namespace CrupestApi.Commons.Secrets;

public interface ISecretService
{
    void CreateTestSecret(string key, string secret);

    List<string> GetPermissions(string secret);
}