14 lines
246 B
JavaScript
14 lines
246 B
JavaScript
|
import { exec } from "node:child_process";
|
||
|
|
||
|
function execute(client, event, args) {
|
||
|
exec("systemctl --user restart possumbot");
|
||
|
}
|
||
|
|
||
|
export default {
|
||
|
command: "restart",
|
||
|
name: "restart",
|
||
|
owner: true,
|
||
|
desc: "restarts the bot",
|
||
|
execute
|
||
|
}
|