From 67a62fadc92bb0774abd675d329bcacc36cd3b93 Mon Sep 17 00:00:00 2001 From: Laura Hausmann Date: Thu, 8 Aug 2024 20:07:45 +0200 Subject: [PATCH] [backend/drive] Move ImageProcessor.cs into the ImageProcessing subfolder --- Iceshrimp.Backend/Core/Extensions/WebApplicationExtensions.cs | 1 + .../Core/Services/{ => ImageProcessing}/ImageProcessor.cs | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) rename Iceshrimp.Backend/Core/Services/{ => ImageProcessing}/ImageProcessor.cs (98%) 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 {