possumbot/commands/restart.js
2024-08-22 15:34:03 +00:00

13 lines
239 B
JavaScript

import { exec } from "node:child_process";
function execute(client, event, args) {
exec("systemctl restart possumbot");
}
export default {
command: "restart",
name: "restart",
owner: true,
desc: "restarts the bot",
execute
}