summaryrefslogtreecommitdiff
path: root/Services
diff options
context:
space:
mode:
authorJake Mannens <jake@asger.xyz>2026-05-06 22:33:52 +1000
committerJake Mannens <jake@asger.xyz>2026-05-06 22:33:52 +1000
commit2b66d00175950d845a794422433d4a350cf87775 (patch)
tree8b0a77d43d80faab235c14008206a926d4566859 /Services
parent60dd44153b5f2b233dc66032507ee6c9a925ed0e (diff)
v0.13av0.13a
Diffstat (limited to 'Services')
-rw-r--r--Services/ConfigService.cs4
-rw-r--r--Services/FeedService.cs3
-rw-r--r--Services/MediaService.cs4
-rw-r--r--Services/TagService.cs6
-rw-r--r--Services/UserService.cs1
5 files changed, 8 insertions, 10 deletions
diff --git a/Services/ConfigService.cs b/Services/ConfigService.cs
index 752f9f5..ac1f155 100644
--- a/Services/ConfigService.cs
+++ b/Services/ConfigService.cs
@@ -1,4 +1,6 @@
-namespace HyperBooru.Services;
+using HyperBooru.ApiModels;
+
+namespace HyperBooru.Services;
public interface IConfigService {
public string DataPath { get; }
diff --git a/Services/FeedService.cs b/Services/FeedService.cs
index 77f92b5..067bff7 100644
--- a/Services/FeedService.cs
+++ b/Services/FeedService.cs
@@ -1,4 +1,5 @@
-using Microsoft.EntityFrameworkCore;
+using HyperBooru.ApiModels;
+using Microsoft.EntityFrameworkCore;
namespace HyperBooru.Services;
diff --git a/Services/MediaService.cs b/Services/MediaService.cs
index 763b953..e497570 100644
--- a/Services/MediaService.cs
+++ b/Services/MediaService.cs
@@ -1,5 +1,5 @@
-using ImageMagick;
-using ImageMagick.Formats;
+using HyperBooru.ApiModels;
+using ImageMagick;
using Microsoft.EntityFrameworkCore;
using MimeDetective;
using MimeDetective.Definitions;
diff --git a/Services/TagService.cs b/Services/TagService.cs
index 56aba04..f7b91dc 100644
--- a/Services/TagService.cs
+++ b/Services/TagService.cs
@@ -1,9 +1,5 @@
-using Microsoft.AspNetCore.Components.Web;
-using Microsoft.AspNetCore.Mvc;
-using Microsoft.AspNetCore.Mvc.Razor.TagHelpers;
+using HyperBooru.ApiModels;
using Microsoft.EntityFrameworkCore;
-using System.Reflection;
-using System.Reflection.Metadata;
namespace HyperBooru.Services;
diff --git a/Services/UserService.cs b/Services/UserService.cs
index 39b1963..9e79dc6 100644
--- a/Services/UserService.cs
+++ b/Services/UserService.cs
@@ -1,5 +1,4 @@
using Microsoft.AspNetCore.Cryptography.KeyDerivation;
-using Microsoft.EntityFrameworkCore;
namespace HyperBooru.Services;