aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Plugins/IServerEntryPoint.cs
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2019-02-03 22:34:40 -0500
committerGitHub <noreply@github.com>2019-02-03 22:34:40 -0500
commit20033f2275361ed4d46df77da0694f8f7dc3f04f (patch)
tree958ec85809d478ad3088d101365f1695e6ba617f /MediaBrowser.Controller/Plugins/IServerEntryPoint.cs
parentbe89d53a9e16e16f434c35e22814f1d9fe3fc16d (diff)
parentc4c0894b29898ab6826542abc7a247291b46f804 (diff)
Merge branch 'master' into fix-env
Diffstat (limited to 'MediaBrowser.Controller/Plugins/IServerEntryPoint.cs')
-rw-r--r--MediaBrowser.Controller/Plugins/IServerEntryPoint.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Plugins/IServerEntryPoint.cs b/MediaBrowser.Controller/Plugins/IServerEntryPoint.cs
index 7b7a591aa..e57929989 100644
--- a/MediaBrowser.Controller/Plugins/IServerEntryPoint.cs
+++ b/MediaBrowser.Controller/Plugins/IServerEntryPoint.cs
@@ -1,4 +1,5 @@
using System;
+using System.Threading.Tasks;
namespace MediaBrowser.Controller.Plugins
{
@@ -10,7 +11,7 @@ namespace MediaBrowser.Controller.Plugins
/// <summary>
/// Runs this instance.
/// </summary>
- void Run();
+ Task RunAsync();
}
public interface IRunBeforeStartup