Files
MewtocolNet/MewTerminal/Commands/ClearCommand.cs
2023-07-06 18:51:54 +02:00

19 lines
362 B
C#

using System;
using System.Collections.Generic;
using CommandLine;
using MewtocolNet;
using MewtocolNet.ComCassette;
using Spectre.Console;
namespace MewTerminal.Commands;
[Verb("clear", HelpText = "Clears console", Hidden = true)]
internal class ClearCommand : CommandLineExcecuteable {
public override void Run() {
Console.Clear();
}
}