mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-27 13:42:51 +08:00
12 lines
291 B
C#
12 lines
291 B
C#
namespace Spectre.Console.Tests.Data;
|
|
|
|
[Description("The turtle command.")]
|
|
public class TurtleCommand : AnimalCommand<TurtleSettings>
|
|
{
|
|
public override int Execute(CommandContext context, TurtleSettings settings)
|
|
{
|
|
DumpSettings(context, settings);
|
|
return 0;
|
|
}
|
|
}
|