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

22 lines
424 B
C#
Raw Normal View History

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