mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 10:58:58 -07:00
16 lines
299 B
C#
16 lines
299 B
C#
|
using System;
|
|||
|
|
|||
|
namespace MediaBrowser.Controller.Plugins
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Interface IServerEntryPoint
|
|||
|
/// </summary>
|
|||
|
public interface IServerEntryPoint : IDisposable
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Runs this instance.
|
|||
|
/// </summary>
|
|||
|
void Run();
|
|||
|
}
|
|||
|
}
|