jellyfin/MediaBrowser.Controller/Plugins/IServerEntryPoint.cs

22 lines
384 B
C#
Raw Normal View History

using System;
2019-01-27 15:40:37 +01:00
using System.Threading.Tasks;
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>
2019-01-27 15:40:37 +01:00
Task RunAsync();
2018-12-28 00:27:57 +01:00
}
public interface IRunBeforeStartup
{
}
}