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