Files
CMLeonOS/shell/Commands/Power/RestartCommand.cs
2026-02-04 20:13:21 +08:00

15 lines
282 B
C#

using System;
using Sys = Cosmos.System;
namespace CMLeonOS.Commands.Power
{
public static class RestartCommand
{
public static void ProcessRestart()
{
Console.WriteLine("Restarting system...");
Sys.Power.Reboot();
}
}
}