diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2020-05-26 20:00:01 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-26 20:00:01 -0400 |
| commit | 7c72f69189500ef491a0e81d8ce6788987f47fa3 (patch) | |
| tree | d8dbb903a3f1a1334f04d447ade715b102e8be99 /Emby.Server.Implementations/ApplicationHost.cs | |
| parent | b33fa06efa1c7bf334bc0bcf7e845d86dffe12da (diff) | |
| parent | e42bfc92f3e072a3d51dddce06bc90587e06791c (diff) | |
Merge pull request #2733 from OancaAndrei/syncplay
Add syncplay feature
Diffstat (limited to 'Emby.Server.Implementations/ApplicationHost.cs')
| -rw-r--r-- | Emby.Server.Implementations/ApplicationHost.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs index e6410f857..be4e05a64 100644 --- a/Emby.Server.Implementations/ApplicationHost.cs +++ b/Emby.Server.Implementations/ApplicationHost.cs @@ -45,6 +45,7 @@ using Emby.Server.Implementations.Services; using Emby.Server.Implementations.Session; using Emby.Server.Implementations.TV; using Emby.Server.Implementations.Updates; +using Emby.Server.Implementations.SyncPlay; using MediaBrowser.Api; using MediaBrowser.Common; using MediaBrowser.Common.Configuration; @@ -78,6 +79,7 @@ using MediaBrowser.Controller.Session; using MediaBrowser.Controller.Sorting; using MediaBrowser.Controller.Subtitles; using MediaBrowser.Controller.TV; +using MediaBrowser.Controller.SyncPlay; using MediaBrowser.LocalMetadata.Savers; using MediaBrowser.MediaEncoding.BdInfo; using MediaBrowser.Model.Configuration; @@ -613,6 +615,8 @@ namespace Emby.Server.Implementations serviceCollection.AddSingleton<IPlaylistManager, PlaylistManager>(); + serviceCollection.AddSingleton<ISyncPlayManager, SyncPlayManager>(); + serviceCollection.AddSingleton<LiveTvDtoService>(); serviceCollection.AddSingleton<ILiveTvManager, LiveTvManager>(); |
