djs-vanity
v1.0.6
Published
a package which you can use to change server vanity
Downloads
170
Maintainers
Readme
🖥️ How to install ?
npm install djs-vanity
Examples
const { setVanity } = require('djs-vanity')
client.on('interactionCreate', async interaction => {
if (!interaction.isCommand()) return;
if (interaction.commandName === 'vanity') {
await setVanity({ client: client, guild: interaction.guild.id, code: "vanity code" })
}
});