jellyfin/MediaBrowser.Controller/Plugins/IServerEntryPoint.cs

21 lines
349 B
C#
Raw Normal View History

using System;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Controller.Plugins
{
/// <summary>
/// Interface IServerEntryPoint
/// </summary>
public interface IServerEntryPoint : IDisposable
{
/// <summary>
/// Runs this instance.
/// </summary>
void Run();
}
public interface IRunBeforeStartup
{
}
}