feat: Add Book Ingestion Modal for local EPUB metadata extraction (fixes #33)

This commit is contained in:
2026-05-10 20:00:14 +02:00
parent f433e3c74a
commit a6a5fc683c
8 changed files with 399 additions and 1 deletions
@@ -1,9 +1,11 @@
using FluentResults;
using NexusReader.Application.Queries.Reader;
using System.IO;
namespace NexusReader.Application.Abstractions.Services;
public interface IEpubService
{
Task<Result<ReaderPageViewModel>> GetEpubContentAsync(int chapterIndex, string? userId = null);
Task<Result<LocalEpubMetadata>> ExtractMetadataAsync(Stream epubStream);
}