aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Plugins/IServerEntryPoint.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2021-05-20 22:46:40 +0200
committerGitHub <noreply@github.com>2021-05-20 22:46:40 +0200
commita7b7ff000bdff1f089dc9d68347058fe8314f509 (patch)
treec1d9f36e3fc4bb6679f9793374370e3de553fc25 /MediaBrowser.Controller/Plugins/IServerEntryPoint.cs
parentee7a95e088520f835a4d179c7c5faec5eaa8f9ff (diff)
parente8790bfa963284863dc1126a83df72309ec30561 (diff)
Merge branch 'master' into tmdb-person-language
Diffstat (limited to 'MediaBrowser.Controller/Plugins/IServerEntryPoint.cs')
-rw-r--r--MediaBrowser.Controller/Plugins/IServerEntryPoint.cs8
1 files changed, 1 insertions, 7 deletions
diff --git a/MediaBrowser.Controller/Plugins/IServerEntryPoint.cs b/MediaBrowser.Controller/Plugins/IServerEntryPoint.cs
index b44e2531e..6024661e1 100644
--- a/MediaBrowser.Controller/Plugins/IServerEntryPoint.cs
+++ b/MediaBrowser.Controller/Plugins/IServerEntryPoint.cs
@@ -14,13 +14,7 @@ namespace MediaBrowser.Controller.Plugins
/// <summary>
/// Run the initialization for this module. This method is invoked at application start.
/// </summary>
+ /// <returns>A <see cref="Task"/> representing the asynchronous operation.</returns>
Task RunAsync();
}
-
- /// <summary>
- /// Indicates that a <see cref="IServerEntryPoint"/> should be invoked as a pre-startup task.
- /// </summary>
- public interface IRunBeforeStartup
- {
- }
}