diff --git a/Iceshrimp.Backend/Core/Extensions/WebApplicationExtensions.cs b/Iceshrimp.Backend/Core/Extensions/WebApplicationExtensions.cs index 2dfc1d51..82230483 100644 --- a/Iceshrimp.Backend/Core/Extensions/WebApplicationExtensions.cs +++ b/Iceshrimp.Backend/Core/Extensions/WebApplicationExtensions.cs @@ -4,6 +4,7 @@ using Iceshrimp.Backend.Core.Database; using Iceshrimp.Backend.Core.Database.Migrations; using Iceshrimp.Backend.Core.Middleware; using Iceshrimp.Backend.Core.Services; +using Iceshrimp.Backend.Core.Services.ImageProcessing; using Iceshrimp.WebPush; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Migrations; diff --git a/Iceshrimp.Backend/Core/Services/ImageProcessor.cs b/Iceshrimp.Backend/Core/Services/ImageProcessing/ImageProcessor.cs similarity index 98% rename from Iceshrimp.Backend/Core/Services/ImageProcessor.cs rename to Iceshrimp.Backend/Core/Services/ImageProcessing/ImageProcessor.cs index a0bacd94..54a63c9e 100644 --- a/Iceshrimp.Backend/Core/Services/ImageProcessor.cs +++ b/Iceshrimp.Backend/Core/Services/ImageProcessing/ImageProcessor.cs @@ -3,11 +3,10 @@ using System.Diagnostics.CodeAnalysis; using Iceshrimp.Backend.Core.Configuration; using Iceshrimp.Backend.Core.Database.Tables; using Iceshrimp.Backend.Core.Helpers; -using Iceshrimp.Backend.Core.Services.ImageProcessing; using Microsoft.Extensions.Options; using static Iceshrimp.Backend.Core.Services.ImageProcessing.ImageVersion; -namespace Iceshrimp.Backend.Core.Services; +namespace Iceshrimp.Backend.Core.Services.ImageProcessing; public class ImageProcessor {