d461e3912a
Co-authored-by: Bond-009 <bond.009@outlook.com>
11 lines
292 B
C#
11 lines
292 B
C#
#pragma warning disable CA1040 // Avoid empty interfaces
|
|
|
|
namespace MediaBrowser.Controller.Plugins
|
|
{
|
|
/// <summary>
|
|
/// Indicates that a <see cref="IServerEntryPoint"/> should be invoked as a pre-startup task.
|
|
/// </summary>
|
|
public interface IRunBeforeStartup
|
|
{
|
|
}
|
|
} |