mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2024-11-09 23:40:18 +00:00
10 lines
205 B
JavaScript
10 lines
205 B
JavaScript
module.exports = {
|
|
name: 'ready',
|
|
async execute(client, Discord) {
|
|
if (client.config.devMode) {
|
|
console.log('dev mode');
|
|
}
|
|
console.log('- Activated -');
|
|
}
|
|
}
|