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