aboutsummaryrefslogtreecommitdiff
path: root/docker/crupest-api/CrupestApi/CrupestApi.Commons/ISecretService.cs
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2022-12-18 20:07:29 +0800
committercrupest <crupest@outlook.com>2022-12-20 20:32:53 +0800
commit2efc4f7ea0784a504ce50207a19a8899a121f8cd (patch)
tree705eac7dd02e4335816a4b048b1b14d08cea24a4 /docker/crupest-api/CrupestApi/CrupestApi.Commons/ISecretService.cs
parent8b7bbe2b70f25bc493bf11bd4d0e484e65d22523 (diff)
downloadcrupest-2efc4f7ea0784a504ce50207a19a8899a121f8cd.tar.gz
crupest-2efc4f7ea0784a504ce50207a19a8899a121f8cd.tar.bz2
crupest-2efc4f7ea0784a504ce50207a19a8899a121f8cd.zip
Develop secret api. v42
Diffstat (limited to 'docker/crupest-api/CrupestApi/CrupestApi.Commons/ISecretService.cs')
-rw-r--r--docker/crupest-api/CrupestApi/CrupestApi.Commons/ISecretService.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/docker/crupest-api/CrupestApi/CrupestApi.Commons/ISecretService.cs b/docker/crupest-api/CrupestApi/CrupestApi.Commons/ISecretService.cs
new file mode 100644
index 0000000..eeabb0d
--- /dev/null
+++ b/docker/crupest-api/CrupestApi/CrupestApi.Commons/ISecretService.cs
@@ -0,0 +1,6 @@
+namespace CrupestApi.Commons;
+
+interface ISecretService
+{
+ List<string> GetPermissions(string secret);
+}