2020-02-06 07:20:23 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-27 07:40:37 -07:00
|
|
|
using System.Threading.Tasks;
|
2019-01-13 12:54:44 -07:00
|
|
|
using MediaBrowser.Controller.Plugins;
|
2015-07-28 20:42:03 -07:00
|
|
|
|
2016-11-03 16:35:19 -07:00
|
|
|
namespace Emby.Server.Implementations.LiveTv.EmbyTV
|
2015-07-28 20:42:03 -07:00
|
|
|
{
|
2020-08-20 03:16:24 -07:00
|
|
|
public sealed class EntryPoint : IServerEntryPoint
|
2015-07-28 20:42:03 -07:00
|
|
|
{
|
2020-02-06 07:20:23 -07:00
|
|
|
/// <inheritdoc />
|
2019-01-27 07:40:37 -07:00
|
|
|
public Task RunAsync()
|
2015-07-28 20:42:03 -07:00
|
|
|
{
|
2019-01-27 07:40:37 -07:00
|
|
|
return EmbyTV.Current.Start();
|
2015-07-28 20:42:03 -07:00
|
|
|
}
|
|
|
|
|
2020-02-06 07:20:23 -07:00
|
|
|
/// <inheritdoc />
|
2015-07-28 20:42:03 -07:00
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|