EntryPoint.cs 331 B

1234567891011121314151617
  1. using System.Threading.Tasks;
  2. using MediaBrowser.Controller.Plugins;
  3. namespace Emby.Server.Implementations.LiveTv.EmbyTV
  4. {
  5. public class EntryPoint : IServerEntryPoint
  6. {
  7. public Task RunAsync()
  8. {
  9. return EmbyTV.Current.Start();
  10. }
  11. public void Dispose()
  12. {
  13. }
  14. }
  15. }