jellyfin/Emby.Server.Implementations/LiveTv/EmbyTV/EntryPoint.cs
Luke Pulverenti 49b799adbe 3.2.30.8
2017-09-05 15:49:02 -04:00

19 lines
345 B
C#

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