namespace RemSox.Kernel.UI.CLI.Commands; public class RebootCommand : ICommand { public string Name => "reboot"; public string Description => "Reboot the system"; public Task ExecuteAsync(string? arguments, Action printLine) { printLine("Rebooting system..."); Sys.Power.Reboot(); return Task.CompletedTask; } }