mirror of
https://github.com/Stone-Red-Code/RemSox.git
synced 2026-09-04 00:56:19 +02:00
16 lines
338 B
C#
16 lines
338 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, Action<string> printLine)
|
|
{
|
|
printLine("Halting system...");
|
|
Environment.Exit(0);
|
|
}
|
|
} |