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

@@ -2,6 +2,7 @@ namespace Alma.Command;
public interface ICommand
{
public string CommandString { get; }
public Task Run(List<string> parameters);
string CommandString { get; }
string[] CommandAliases { get; }
Task Run(List<string> parameters);
}