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