blob: 2b831103a5fc72f69a867d833f984b69176271a7 (
plain)
1
2
3
4
5
6
7
8
9
|
namespace MediaBrowser.Controller.Plugins
{
/// <summary>
/// Indicates that a <see cref="IServerEntryPoint"/> should be invoked as a pre-startup task.
/// </summary>
public interface IRunBeforeStartup
{
}
}
|