Files
RemSox/UI/CLI/Commands/ClearCommand.cs
T
2026-06-08 21:30:40 +02:00

13 lines
278 B
C#

namespace RemSox.UI.CLI.Commands;
public sealed class ClearCommand : ICommand
{
public string Name => "clear";
public string Description => "Clear the screen";
public void Execute(string? arguments, Action<string> printLine)
{
Console.Clear();
}
}