14 lines
341 B
C#
14 lines
341 B
C#
namespace AnchorCli.Commands;
|
|
|
|
public class SetupCommand : ICommand
|
|
{
|
|
public string Name => "setup";
|
|
public string Description => "Run interactive setup wizard to configure API key and model";
|
|
|
|
public Task ExecuteAsync(string[] args, CancellationToken ct)
|
|
{
|
|
SetupTui.Run();
|
|
return Task.CompletedTask;
|
|
}
|
|
}
|