mirror of
https://github.com/Leonmmcoset/CMLeonOS.git
synced 2026-03-03 11:37:01 +00:00
15 lines
289 B
C#
15 lines
289 B
C#
using System;
|
|
using Sys = Cosmos.System;
|
|
|
|
namespace CMLeonOS.Commands.Power
|
|
{
|
|
public static class ShutdownCommand
|
|
{
|
|
public static void ProcessShutdown()
|
|
{
|
|
Console.WriteLine("Shutting down system...");
|
|
Sys.Power.Shutdown();
|
|
}
|
|
}
|
|
}
|