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