diff options
Diffstat (limited to 'src/Jellyfin.LiveTv/EmbyTV/EntryPoint.cs')
| -rw-r--r-- | src/Jellyfin.LiveTv/EmbyTV/EntryPoint.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/Jellyfin.LiveTv/EmbyTV/EntryPoint.cs b/src/Jellyfin.LiveTv/EmbyTV/EntryPoint.cs new file mode 100644 index 0000000000..e750c05ac8 --- /dev/null +++ b/src/Jellyfin.LiveTv/EmbyTV/EntryPoint.cs @@ -0,0 +1,21 @@ +#pragma warning disable CS1591 + +using System.Threading.Tasks; +using MediaBrowser.Controller.Plugins; + +namespace Jellyfin.LiveTv.EmbyTV +{ + public sealed class EntryPoint : IServerEntryPoint + { + /// <inheritdoc /> + public Task RunAsync() + { + return EmbyTV.Current.Start(); + } + + /// <inheritdoc /> + public void Dispose() + { + } + } +} |
