Shamir/src/console/CommandTree/DefaultHelpTextCommand.cs

26 lines
No EOL
711 B
C#

using System.Collections.Immutable;
using System.Threading.Tasks;
namespace Shamir.Console
{
public sealed class DefaultHelpTextCommand : ICommand
{
public DefaultHelpTextCommand(IImmutableStack<ICommandTree> path)
{
this.Path = path;
}
public string Name => "help";
public string Description => "Print help text";
public IImmutableStack<ICommandTree> Path { get; }
public ValueTask<int> ExecuteAsync()
{
System.Console.Error.WriteLine(GetHelpText());
return ValueTask.FromResult(1); // TODO: const
}
public string GetHelpText() => CommandTreeExtensions.BuildHelpText(Path);
}
}