jellyfin/MediaBrowser.Controller/Plugins/IServerEntryPoint.cs
2018-12-27 18:27:57 -05:00

21 lines
352 B
C#

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