mirror of
https://github.com/OpenLogics/MewtocolNet.git
synced 2025-12-06 03:01:24 +00:00
19 lines
362 B
C#
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();
|
|
|
|
}
|
|
|
|
} |