mirror of
https://github.com/Stone-Red-Code/TextLore.git
synced 2026-09-04 17:16:33 +02:00
17 lines
466 B
C#
17 lines
466 B
C#
using TextLore.Console;
|
|
|
|
namespace TextLore.Shared.Commands;
|
|
|
|
public class TestCommand : Command
|
|
{
|
|
public override string Name => "test";
|
|
public override string Description => "A test command.";
|
|
|
|
public override string[] Aliases => ["tst"];
|
|
|
|
public override Task<CommandResult> Execute(ConsoleWriter consoleOutput, string args)
|
|
{
|
|
consoleOutput.WriteLine("This is a test command.");
|
|
return CommandResult.Success("test");
|
|
}
|
|
} |