aboutsummaryrefslogtreecommitdiff
path: root/docker/crupest-api/CrupestApi/CrupestApi.Secrets/SecretsService.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.Secrets/SecretsService.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.Secrets/SecretsService.cs')
-rw-r--r--docker/crupest-api/CrupestApi/CrupestApi.Secrets/SecretsService.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/docker/crupest-api/CrupestApi/CrupestApi.Secrets/SecretsService.cs b/docker/crupest-api/CrupestApi/CrupestApi.Secrets/SecretsService.cs
deleted file mode 100644
index 7051602..0000000
--- a/docker/crupest-api/CrupestApi/CrupestApi.Secrets/SecretsService.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-using CrupestApi.Commons.Crud;
-
-namespace CrupestApi.Secrets;
-
-public class SecretsService : CrudService<SecretInfo>
-{
- private readonly ILogger<SecretsService> _logger;
-
- public SecretsService(ITableInfoFactory tableInfoFactory, IDbConnectionFactory dbConnectionFactory, ILoggerFactory loggerFactory)
- : base("secrets", tableInfoFactory, dbConnectionFactory, loggerFactory)
- {
- _logger = loggerFactory.CreateLogger<SecretsService>();
- }
-}