EntryPoint.cs 424 B

123456789101112131415161718192021
  1. #pragma warning disable CS1591
  2. using System.Threading.Tasks;
  3. using MediaBrowser.Controller.Plugins;
  4. namespace Emby.Server.Implementations.LiveTv.EmbyTV
  5. {
  6. public sealed class EntryPoint : IServerEntryPoint
  7. {
  8. /// <inheritdoc />
  9. public Task RunAsync()
  10. {
  11. return EmbyTV.Current.Start();
  12. }
  13. /// <inheritdoc />
  14. public void Dispose()
  15. {
  16. }
  17. }
  18. }