1
0
Files
AnchorCli/Commands/ICommand.cs
2026-03-04 07:59:35 +01:00

9 lines
178 B
C#

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