add emby media source (#201)
* 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
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using System.Threading.Tasks;
|
||||
using LanguageExt;
|
||||
|
||||
namespace ErsatzTV.Core.Interfaces.MediaSources
|
||||
{
|
||||
public interface IRemoteMediaSourceSecretStore<TSecrets>
|
||||
{
|
||||
Task<Unit> DeleteAll();
|
||||
Task<TSecrets> ReadSecrets();
|
||||
Task<Unit> SaveSecrets(TSecrets jellyfinSecrets);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user