diff options
| author | LukePulverenti <luke.pulverenti@gmail.com> | 2013-03-03 02:27:40 -0500 |
|---|---|---|
| committer | LukePulverenti <luke.pulverenti@gmail.com> | 2013-03-03 02:27:40 -0500 |
| commit | 7b0b5a35382d0b43f298d7ef015d6fd3031a8c72 (patch) | |
| tree | 9ffb770fe05b7d51995be8fb1dbdae4eaec01e26 /MediaBrowser.Common/Kernel/IApplicationHost.cs | |
| parent | 7665b1563d6459aabe9ceea7cecc192d487c1686 (diff) | |
created an init method on base app host
Diffstat (limited to 'MediaBrowser.Common/Kernel/IApplicationHost.cs')
| -rw-r--r-- | MediaBrowser.Common/Kernel/IApplicationHost.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Common/Kernel/IApplicationHost.cs b/MediaBrowser.Common/Kernel/IApplicationHost.cs index 29934988a..38a1cb318 100644 --- a/MediaBrowser.Common/Kernel/IApplicationHost.cs +++ b/MediaBrowser.Common/Kernel/IApplicationHost.cs @@ -110,5 +110,11 @@ namespace MediaBrowser.Common.Kernel /// </summary> /// <param name="plugin">The plugin.</param> void RemovePlugin(IPlugin plugin); + + /// <summary> + /// Inits this instance. + /// </summary> + /// <returns>Task.</returns> + Task Init(); } } |
