2021-06-06 15:16:41 +00:00
|
|
|
|
#pragma warning disable CA1040 // Avoid empty interfaces
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Plugins
|
2021-05-13 13:32:02 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Indicates that a <see cref="IServerEntryPoint"/> should be invoked as a pre-startup task.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IRunBeforeStartup
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|