initial commit
This commit is contained in:
8
Commands/ICommand.cs
Normal file
8
Commands/ICommand.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace AnchorCli.Commands;
|
||||
|
||||
public interface ICommand
|
||||
{
|
||||
string Name { get; }
|
||||
string Description { get; }
|
||||
Task ExecuteAsync(string[] args, CancellationToken ct);
|
||||
}
|
||||
Reference in New Issue
Block a user