9 lines
178 B
C#
9 lines
178 B
C#
namespace AnchorCli.Commands;
|
|
|
|
public interface ICommand
|
|
{
|
|
string Name { get; }
|
|
string Description { get; }
|
|
Task ExecuteAsync(string[] args, CancellationToken ct);
|
|
}
|