1234567891011121314151617181920 |
- using System;
- namespace MediaBrowser.Controller.Plugins
- {
- /// <summary>
- /// Interface IServerEntryPoint
- /// </summary>
- public interface IServerEntryPoint : IDisposable
- {
- /// <summary>
- /// Runs this instance.
- /// </summary>
- void Run();
- }
- public interface IRunBeforeStartup
- {
- }
- }
|