mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 11:20:19 +00:00
7 lines
254 B
JavaScript
7 lines
254 B
JavaScript
module.exports = async function (client) {
|
|
try {
|
|
await client.channels.get(client.configs.secondary_test_channel).join()
|
|
} catch (error) {
|
|
client.channels.get(client.config.debug_channel).send("Error detected: " + error);
|
|
}
|
|
}; |