* sync episode tags and genres * update dependencies * property update local episode genres and tags * fix test
16 lines
379 B
C#
16 lines
379 B
C#
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.Jellyfin;
|
|
|
|
public interface IJellyfinMovieLibraryScanner
|
|
{
|
|
Task<Either<BaseError, Unit>> ScanLibrary(
|
|
string address,
|
|
string apiKey,
|
|
JellyfinLibrary library,
|
|
string ffmpegPath,
|
|
string ffprobePath,
|
|
bool deepScan,
|
|
CancellationToken cancellationToken);
|
|
}
|