jellyfin/MediaBrowser.Server.Implementations/LiveTv/EmbyTV/EntryPoint.cs
Luke Pulverenti 274d8176b3 update hls
2015-08-28 20:50:39 -04:00

17 lines
300 B
C#

using MediaBrowser.Controller.Plugins;
namespace MediaBrowser.Server.Implementations.LiveTv.EmbyTV
{
public class EntryPoint : IServerEntryPoint
{
public void Run()
{
EmbyTV.Current.Start();
}
public void Dispose()
{
}
}
}