mrmBot-Matrix/events/voiceChannelSwitch.js

5 lines
214 B
JavaScript
Raw Normal View History

const leaveHandler = require("./voiceChannelLeave.js");
2021-07-05 04:15:27 +00:00
module.exports = async (client, cluster, worker, ipc, member, newChannel, oldChannel) => {
await leaveHandler(client, cluster, ipc, member, oldChannel);
};