Files
ersatztv/ErsatzTV.Core/Interfaces/Emby/IEmbyCollectionScanner.cs
T
Jason DoveandGitHub d67251bfa0 jellyfin and emby collection sync (#752)
* sync jellyfin and emby collections

* update changelog
2022-04-22 13:33:35 -05:00

9 lines
188 B
C#

namespace ErsatzTV.Core.Interfaces.Emby;
public interface IEmbyCollectionScanner
{
Task<Either<BaseError, Unit>> ScanCollections(
string address,
string apiKey);
}