jellyfin/Emby.Server.Implementations/LiveTv/EmbyTV/EntryPoint.cs

17 lines
289 B
C#
Raw Normal View History

using MediaBrowser.Controller.Plugins;
2015-07-29 05:42:03 +02:00
2016-11-04 00:35:19 +01:00
namespace Emby.Server.Implementations.LiveTv.EmbyTV
2015-07-29 05:42:03 +02:00
{
public class EntryPoint : IServerEntryPoint
{
2015-08-29 02:50:39 +02:00
public void Run()
2015-07-29 05:42:03 +02:00
{
EmbyTV.Current.Start();
}
public void Dispose()
{
}
}
}