diff options
author | crupest <crupest@outlook.com> | 2022-12-20 19:14:32 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-12-20 20:32:53 +0800 |
commit | 51bf9d6c9e522ecc31f9068d9e5eaa0321fef587 (patch) | |
tree | 8367de0e8fa3ddfd2d0c313aa8d2d2510634b520 /docker/crupest-api/CrupestApi/CrupestApi.Commons/Secrets/ISecretService.cs | |
parent | ea6afcf68bd10d5dbae5b99e590794dd219ea413 (diff) | |
download | crupest-51bf9d6c9e522ecc31f9068d9e5eaa0321fef587.tar.gz crupest-51bf9d6c9e522ecc31f9068d9e5eaa0321fef587.tar.bz2 crupest-51bf9d6c9e522ecc31f9068d9e5eaa0321fef587.zip |
Develop secret api. v49
Diffstat (limited to 'docker/crupest-api/CrupestApi/CrupestApi.Commons/Secrets/ISecretService.cs')
-rw-r--r-- | docker/crupest-api/CrupestApi/CrupestApi.Commons/Secrets/ISecretService.cs | 8 |
1 files changed, 8 insertions, 0 deletions
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<string> GetPermissions(string secret); +} |