ProzillaOS/packages/apps/terminal/core/commands/uptime.ts
2024-06-16 21:46:44 +02:00

10 lines
No EOL
283 B
TypeScript

import { TimeManager } from "../../../_utils/time.utils";
import { Command } from "../command";
export const uptime = new Command()
.setManual({
purpose: "Display the current uptime of the system"
})
.setExecute(function() {
return `Uptime: ${TimeManager.getUptime(2)}`;
});