Reorganize project structure

This commit is contained in:
Stone_Red
2026-06-19 00:56:46 +02:00
parent 6f58eefb66
commit 95d88f1a8d
84 changed files with 267 additions and 186 deletions
@@ -0,0 +1,20 @@
namespace RemSox.Kernel.UI.CLI.Commands;
public sealed class HelpCommand : ICommand
{
public string Name => "help";
public string Description => "Show this help message";
public Task ExecuteAsync(string? arguments, Action<string> printLine)
{
printLine("Available commands:");
foreach (ICommand command in CommandManager.GetCommands())
{
printLine($" {command.Name,-12} - {command.Description}");
}
return Task.CompletedTask;
}
}