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
commitf73342cb6b0592d3a6310f9a12fd40b4bf218e5c (patch)
tree705eac7dd02e4335816a4b048b1b14d08cea24a4 /docker/crupest-api/CrupestApi/CrupestApi.Commons/ISecretService.cs
parent7407875fb75bcd90f6f7ef54573483fe2f3cfb84 (diff)
downloadcrupest-f73342cb6b0592d3a6310f9a12fd40b4bf218e5c.tar.gz
crupest-f73342cb6b0592d3a6310f9a12fd40b4bf218e5c.tar.bz2
crupest-f73342cb6b0592d3a6310f9a12fd40b4bf218e5c.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);
+}