mrmBot-Matrix/events/voiceChannelSwitch.js

5 lines
178 B
JavaScript
Raw Normal View History

const leaveHandler = require("./voiceChannelLeave.js");
module.exports = async (client, member, newChannel, oldChannel) => {
2021-04-15 18:59:57 +00:00
await leaveHandler(client, member, oldChannel);
};