summaryrefslogtreecommitdiff
path: root/Services
diff options
context:
space:
mode:
Diffstat (limited to 'Services')
-rw-r--r--Services/SecurityService.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/Services/SecurityService.cs b/Services/SecurityService.cs
index c8dafd5..6e5ecb8 100644
--- a/Services/SecurityService.cs
+++ b/Services/SecurityService.cs
@@ -1,4 +1,5 @@
using Microsoft.EntityFrameworkCore;
+using Microsoft.Extensions.Caching.Memory;
using System.Data;
namespace HyperBooru.Services;
@@ -6,8 +7,8 @@ namespace HyperBooru.Services;
public class SecurityService {
private IDbContextFactory<HBContext> dbFactory;
- private Group[] groups;
- private Acl[] acls;
+ private Group[] groups;
+ private Acl[] acls;
public SecurityService(IDbContextFactory<HBContext> dbFactory) {
this.dbFactory = dbFactory;