Add -h --help aliases for help

This commit is contained in:
2024-03-01 22:39:02 +01:00
parent 4f0e7262ce
commit 9027f28065
15 changed files with 32 additions and 13 deletions

View File

@@ -1,6 +1,4 @@
using System.Diagnostics;
using Alma.Configuration.Repository;
using Alma.Data;
using Alma.Logging;
using Alma.Services;
@@ -11,6 +9,7 @@ public class InstallCommand : RepositoryModuleCommandBase
private readonly ILogger<InstallCommand> _logger;
private readonly IShellService _shellService;
public override string CommandString => "install";
public override string[] CommandAliases => Array.Empty<string>();
public InstallCommand(
ILogger<InstallCommand> logger,