From 807ffbc0edf25754351c71af147cb58beaaf1498 Mon Sep 17 00:00:00 2001 From: crupest Date: Tue, 20 Dec 2022 19:14:32 +0800 Subject: Develop secret api. v49 --- .../CrupestApi/CrupestApi.Commons/Secrets/ISecretService.cs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 docker/crupest-api/CrupestApi/CrupestApi.Commons/Secrets/ISecretService.cs (limited to 'docker/crupest-api/CrupestApi/CrupestApi.Commons/Secrets/ISecretService.cs') diff --git a/docker/crupest-api/CrupestApi/CrupestApi.Commons/Secrets/ISecretService.cs b/docker/crupest-api/CrupestApi/CrupestApi.Commons/Secrets/ISecretService.cs new file mode 100644 index 0000000..83025f8 --- /dev/null +++ b/docker/crupest-api/CrupestApi/CrupestApi.Commons/Secrets/ISecretService.cs @@ -0,0 +1,8 @@ +namespace CrupestApi.Commons.Secrets; + +public interface ISecretService +{ + void CreateTestSecret(string key, string secret); + + List GetPermissions(string secret); +} -- cgit v1.2.3