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

8
Commands/ICommand.cs Normal file
View File

@@ -0,0 +1,8 @@
namespace AnchorCli.Commands;
public interface ICommand
{
string Name { get; }
string Description { get; }
Task ExecuteAsync(string[] args, CancellationToken ct);
}