diff options
| author | Bond-009 <bond.009@outlook.com> | 2021-05-18 21:21:26 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-18 21:21:26 +0200 |
| commit | 8d2e5ef8c632a09109e946f87aa37fb34c0d6605 (patch) | |
| tree | 9546fd5184f4c44354f4ba9f75d68fb0cc9157e4 /MediaBrowser.Controller/Plugins/IServerEntryPoint.cs | |
| parent | 19e9bef256129f10e701d98567826f46d30a12fb (diff) | |
| parent | b6dda30a33e7ea3465629e041be74b3e9022d810 (diff) | |
Merge pull request #6042 from crobibero/mbc-warn-2
Diffstat (limited to 'MediaBrowser.Controller/Plugins/IServerEntryPoint.cs')
| -rw-r--r-- | MediaBrowser.Controller/Plugins/IServerEntryPoint.cs | 8 |
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 - { - } } |
