EntryPoint.cs 345 B

123456789101112131415161718
  1. using System;
  2. using MediaBrowser.Controller.Plugins;
  3. namespace Emby.Server.Implementations.LiveTv.EmbyTV
  4. {
  5. public class EntryPoint : IServerEntryPoint
  6. {
  7. public void Run()
  8. {
  9. EmbyTV.Current.Start();
  10. }
  11. public void Dispose()
  12. {
  13. GC.SuppressFinalize(this);
  14. }
  15. }
  16. }