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

19 lines
345 B
C#
Raw Normal View History

2017-09-05 19:49:02 +00:00
using System;
using MediaBrowser.Controller.Plugins;
2015-07-29 03:42:03 +00:00
2016-11-03 23:35:19 +00:00
namespace Emby.Server.Implementations.LiveTv.EmbyTV
2015-07-29 03:42:03 +00:00
{
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()
{
2017-09-05 19:49:02 +00:00
GC.SuppressFinalize(this);
2015-07-29 03:42:03 +00:00
}
}
}