mirror of
https://github.com/Stone-Red-Code/RemSox.git
synced 2026-09-04 17:16:24 +02:00
15 lines
378 B
C#
15 lines
378 B
C#
namespace RemSox.UI.CLI.Commands;
|
|
|
|
public sealed class ShutdownCommand : ICommand
|
|
{
|
|
public string Name => "shutdown";
|
|
|
|
public string Description => "Shutdown the system";
|
|
|
|
public Task ExecuteAsync(string? arguments, Action<string> printLine)
|
|
{
|
|
printLine("Shutting down system...");
|
|
Sys.Power.Shutdown();
|
|
return Task.CompletedTask;
|
|
}
|
|
} |