* properly scope jellyfin disconnect * add emby entities * add emby media source page * add emby media source editor * sync emby libraries * enable emby library sync toggle * add emby path replacements editor * add emby movie synchronization * fix emby artwork * sync emby television * code cleanup * add jellyfin/emby address placeholder * tweak jellyfin/emby address form
16 lines
355 B
C#
16 lines
355 B
C#
using System.Threading.Tasks;
|
|
using ErsatzTV.Core.Domain;
|
|
using LanguageExt;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.Emby
|
|
{
|
|
public interface IEmbyMovieLibraryScanner
|
|
{
|
|
Task<Either<BaseError, Unit>> ScanLibrary(
|
|
string address,
|
|
string apiKey,
|
|
EmbyLibrary library,
|
|
string ffprobePath);
|
|
}
|
|
}
|