Files
RemSox/UI/CLI/Commands/HaltCommand.cs
T
2026-06-08 12:30:37 +02:00

16 lines
320 B
C#

using System;
namespace RemSox.UI.GUI.CLI.Commands;
public sealed class HaltCommand : ICommand
{
public string Name => "halt";
public string Description => "Halt the system";
public void Execute(string? arguments)
{
Console.WriteLine("Halting system...");
Environment.Exit(0);
}
}