Files
CMLeonOS/shell/Commands/Power/ShutdownCommand.cs

15 lines
289 B
C#
Raw Normal View History

2026-02-04 20:13:21 +08:00
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();
}
}
}