13 lines
214 B
JavaScript
13 lines
214 B
JavaScript
import { exec } from "node:child_process";
|
|
|
|
function execute(client, event, args) {
|
|
client.joinRoom(args);
|
|
}
|
|
|
|
export default {
|
|
command: "join",
|
|
name: "join",
|
|
owner: true,
|
|
desc: "join a room",
|
|
execute
|
|
}
|