diff options
| author | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-04-05 13:46:36 -0400 |
|---|---|---|
| committer | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-04-05 13:46:36 -0400 |
| commit | 15dd46c25a54862b35f885a91479c5507c8bf2d9 (patch) | |
| tree | 034ce1aa6df340420461ddcdcdeb42cb23a545d9 /Emby.Server.Implementations/IStartupOptions.cs | |
| parent | 92af81166d00eb886e1111c4b7dc9788cacc619a (diff) | |
Add '--plugin-manifest-url' command line option and 'InstallationManager:PluginManifestUrl' config option
Diffstat (limited to 'Emby.Server.Implementations/IStartupOptions.cs')
| -rw-r--r-- | Emby.Server.Implementations/IStartupOptions.cs | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/Emby.Server.Implementations/IStartupOptions.cs b/Emby.Server.Implementations/IStartupOptions.cs index 6e915de3d..16b68170b 100644 --- a/Emby.Server.Implementations/IStartupOptions.cs +++ b/Emby.Server.Implementations/IStartupOptions.cs @@ -3,33 +3,38 @@ namespace Emby.Server.Implementations public interface IStartupOptions { /// <summary> - /// --ffmpeg + /// Gets the value of the --ffmpeg command line option. /// </summary> string FFmpegPath { get; } /// <summary> - /// --service + /// Gets the value of the --service command line option. /// </summary> bool IsService { get; } /// <summary> - /// --noautorunwebapp + /// Gets the value of the --noautorunwebapp command line option. /// </summary> bool NoAutoRunWebApp { get; } /// <summary> - /// --package-name + /// Gets the value of the --package-name command line option. /// </summary> string PackageName { get; } /// <summary> - /// --restartpath + /// Gets the value of the --restartpath command line option. /// </summary> string RestartPath { get; } /// <summary> - /// --restartargs + /// Gets the value of the --restartargs command line option. /// </summary> string RestartArgs { get; } + + /// <summary> + /// Gets the value of the --plugin-manifest-url command line option. + /// </summary> + string PluginManifestUrl { get; } } } |
