aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Plugins/IServerEntryPoint.cs
blob: e57929989a7353b6be89b12a21c96ecd698887e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Threading.Tasks;

namespace MediaBrowser.Controller.Plugins
{
    /// <summary>
    /// Interface IServerEntryPoint
    /// </summary>
    public interface IServerEntryPoint : IDisposable
    {
        /// <summary>
        /// Runs this instance.
        /// </summary>
        Task RunAsync();
    }

    public interface IRunBeforeStartup
    {

    }
}