aboutsummaryrefslogtreecommitdiff
path: root/src/Jellyfin.LiveTv/EmbyTV/EntryPoint.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Jellyfin.LiveTv/EmbyTV/EntryPoint.cs')
-rw-r--r--src/Jellyfin.LiveTv/EmbyTV/EntryPoint.cs21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/Jellyfin.LiveTv/EmbyTV/EntryPoint.cs b/src/Jellyfin.LiveTv/EmbyTV/EntryPoint.cs
deleted file mode 100644
index e750c05ac..000000000
--- a/src/Jellyfin.LiveTv/EmbyTV/EntryPoint.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-#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()
- {
- }
- }
-}