12 lines
230 B
C#
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);
|
|
}
|