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

22 lines
424 B
C#
Raw Normal View History

#pragma warning disable CS1591
2019-01-27 09:40:37 -05:00
using System.Threading.Tasks;
using MediaBrowser.Controller.Plugins;
2015-07-28 23:42:03 -04:00
2016-11-03 19:35:19 -04:00
namespace Emby.Server.Implementations.LiveTv.EmbyTV
2015-07-28 23:42:03 -04:00
{
public sealed class EntryPoint : IServerEntryPoint
2015-07-28 23:42:03 -04:00
{
/// <inheritdoc />
2019-01-27 09:40:37 -05:00
public Task RunAsync()
2015-07-28 23:42:03 -04:00
{
2019-01-27 09:40:37 -05:00
return EmbyTV.Current.Start();
2015-07-28 23:42:03 -04:00
}
/// <inheritdoc />
2015-07-28 23:42:03 -04:00
public void Dispose()
{
}
}
}