1
0

initial commit

This commit is contained in:
2026-03-04 07:59:35 +01:00
commit 3ceb0e4884
27 changed files with 2280 additions and 0 deletions

14
Commands/ClearCommand.cs Normal file
View File

@@ -0,0 +1,14 @@
using Spectre.Console;
namespace AnchorCli.Commands;
public class ClearCommand : ICommand
{
public string Name => "clear";
public string Description => "Clear the terminal screen";
public Task ExecuteAsync(string[] args, CancellationToken ct)
{
AnsiConsole.Clear();
return Task.CompletedTask;
}
}