EntryPoint.cs 300 B

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