EntryPoint.cs 448 B

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