nose-pluto/bin/reboot.ts
2025-10-01 21:39:43 -07:00

10 lines
274 B
TypeScript

export default async function reboot() {
setTimeout(async () => await Bun.$`reboot`, 1000)
return {
text: "Rebooting... This will take about 10 seconds.",
script: `setTimeout(() => window.location.reload(), 10000)`
}
}
export const GET = reboot