jointocreate
v1.1.8
Published
A simple package that allow to make private voice channel at discordjs
Downloads
7
Readme
Introduction
A simple package that allow to make private voice channel at discordjs
Support
Support server Discord
Code Samples
This is a sample code to use this package
const Discord = require("discord.js");
const client = new Discord.Client();
const { joinToCreate } = require('jointocreate')
client.on("ready", ()=>console.log("READY"));
//import the joinToCreate package
joinToCreate(client, 'YOUR_CHANNEL_ID');
client.login('YOUR_BOT_TOKEN')