2019-01-27 14:40:37 +00:00
|
|
|
using System.Threading.Tasks;
|
2019-01-13 19:54:44 +00:00
|
|
|
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
|
|
|
|
{
|
2019-01-27 14:40:37 +00:00
|
|
|
public Task RunAsync()
|
2015-07-29 03:42:03 +00:00
|
|
|
{
|
2019-01-27 14:40:37 +00:00
|
|
|
return EmbyTV.Current.Start();
|
2015-07-29 03:42:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|