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

10 lines
258 B
TypeScript

export default function restart() {
setTimeout(() => process.exit(), 1000)
return {
text: "Restarting... This will take a second or two.",
script: `setTimeout(() => window.location.reload(), 3000)`
}
}
export const GET = restart