possumbot/commands/restart.js

14 lines
223 B
JavaScript
Raw Normal View History

2024-08-21 17:00:40 +02:00
import { exec } from "node:child_process";
function execute(client, event, args) {
process.exit(255);
2024-08-21 17:00:40 +02:00
}
export default {
command: "restart",
name: "restart",
owner: true,
desc: "restarts the bot",
execute
}