using System; using System.Threading.Tasks; namespace MediaBrowser.Controller.Plugins { /// /// Interface IServerEntryPoint /// public interface IServerEntryPoint : IDisposable { /// /// Runs this instance. /// Task RunAsync(); } public interface IRunBeforeStartup { } }