aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Plugins/IServerEntryPoint.cs
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2021-05-13 07:32:02 -0600
committercrobibero <cody@robibe.ro>2021-05-13 07:33:11 -0600
commit6bcbc2b88ae84b1d7cfc50f0872580bed437a60f (patch)
tree5a99e570a04d3aa11f8e4fb305cf48a10324d54c /MediaBrowser.Controller/Plugins/IServerEntryPoint.cs
parent88a7875a2739bef91f1d7216c5ebd89b4c267911 (diff)
Reduce warnings in MediaBrowser.Controller
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
- {
- }
}