Initial commit

This commit is contained in:
Stone_Red
2026-06-08 12:30:37 +02:00
commit 2ba87a113d
310 changed files with 4457 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
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);
}
}