mirror of
https://github.com/Leonmmcoset/CMLeonOS.git
synced 2026-03-03 15:30:27 +00:00
15 lines
282 B
C#
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();
|
|
}
|
|
}
|
|
}
|