noz-cli/NozCli/Commands/ICommand.cs
2026-05-16 19:25:39 +02:00

12 lines
230 B
C#

using NozCli.Repl;
namespace NozCli.Commands;
public interface ICommand
{
string Name { get; }
string Description { get; }
string Usage { get; }
Task ExecuteAsync(string[] args, ReplContext ctx);
}