jellyfin/Emby.Server.Implementations/LiveTv/EmbyTV/EntryPoint.cs
2016-11-03 19:35:19 -04:00

17 lines
292 B
C#

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