From 080916eb99d1eeb1eb909fd1367d880b37adc73a Mon Sep 17 00:00:00 2001 From: Antigravity Date: Mon, 11 May 2026 18:08:46 +0000 Subject: [PATCH] refactor: remove obsolete IEpubService interface (replaced by IEpubReader and IEpubMetadataExtractor) --- .../Abstractions/Services/IEpubService.cs | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 src/NexusReader.Application/Abstractions/Services/IEpubService.cs diff --git a/src/NexusReader.Application/Abstractions/Services/IEpubService.cs b/src/NexusReader.Application/Abstractions/Services/IEpubService.cs deleted file mode 100644 index 4b288c0..0000000 --- a/src/NexusReader.Application/Abstractions/Services/IEpubService.cs +++ /dev/null @@ -1,11 +0,0 @@ -using FluentResults; -using NexusReader.Application.Queries.Reader; -using System.IO; - -namespace NexusReader.Application.Abstractions.Services; - -public interface IEpubService -{ - Task> GetEpubContentAsync(int chapterIndex, string? userId = null); - Task> ExtractMetadataAsync(Stream epubStream); -}