IServerEntryPoint.cs 384 B

123456789101112131415161718192021
  1. using System;
  2. using System.Threading.Tasks;
  3. namespace MediaBrowser.Controller.Plugins
  4. {
  5. /// <summary>
  6. /// Interface IServerEntryPoint
  7. /// </summary>
  8. public interface IServerEntryPoint : IDisposable
  9. {
  10. /// <summary>
  11. /// Runs this instance.
  12. /// </summary>
  13. Task RunAsync();
  14. }
  15. public interface IRunBeforeStartup
  16. {
  17. }
  18. }