jellyfin/MediaBrowser.Controller/Plugins/IServerEntryPoint.cs

22 lines
384 B
C#
Raw Normal View History

using System;
2019-01-27 09:40:37 -05:00
using System.Threading.Tasks;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Controller.Plugins
{
/// <summary>
/// Interface IServerEntryPoint
/// </summary>
public interface IServerEntryPoint : IDisposable
{
/// <summary>
/// Runs this instance.
/// </summary>
2019-01-27 09:40:37 -05:00
Task RunAsync();
2018-12-27 18:27:57 -05:00
}
public interface IRunBeforeStartup
{
}
}