jellyfin-server/MediaBrowser.Server.Implementations/LiveTv/EmbyTV/EntryPoint.cs

17 lines
300 B
C#
Raw Normal View History

2015-07-29 03:42:03 +00:00
using MediaBrowser.Controller.Plugins;
namespace MediaBrowser.Server.Implementations.LiveTv.EmbyTV
{
public class EntryPoint : IServerEntryPoint
{
public void Run()
{
EmbyTV.Current.Start();
}
public void Dispose()
{
}
}
}