mirror of
https://github.com/hazemKrimi/discord-bot.git
synced 2026-05-01 18:30:25 +00:00
7 lines
175 B
JavaScript
7 lines
175 B
JavaScript
module.exports = {
|
|
name: 'leave',
|
|
description: 'leaves a voice channel',
|
|
execute: async = (message, voiceChannel, args) => {
|
|
voiceChannel.leave();
|
|
}
|
|
}; |