Spaces:
Sleeping
Sleeping
File size: 819 Bytes
8d8b0ad |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
const { cmd } = require('../command');
const { sleep } = require('../lib/functions');
cmd({
pattern: "restart",
desc: "Restart the SubZero Md",
category: "owner",
filename: __filename
},
async (conn, mek, m, {
from, quoted, body, isCmd, command, args, q, isGroup, senderNumber, reply
}) => {
try {
// Get the bot owner's number dynamically from conn.user.id
const botOwner = conn.user.id.split(":")[0]; // Extract the bot owner's number
if (senderNumber !== botOwner) {
return reply("Only the bot owner can use this command.");
}
const { exec } = require("child_process");
reply("Restarting...");
await sleep(1500);
exec("pm2 restart all");
} catch (e) {
console.error(e);
reply(`${e}`);
}
}); |