mirror of
https://github.com/Expand-sys/ccashbot
synced 2025-12-16 15:42:13 +11:00
12 lines
269 B
JavaScript
12 lines
269 B
JavaScript
module.exports = {
|
|
name: 'args-info',
|
|
description: 'Information about the arguments provided.',
|
|
args: true,
|
|
execute(message, args) {
|
|
if (args[0] === 'foo') {
|
|
return message.channel.send('bar');
|
|
}
|
|
|
|
message.channel.send(`First argument: ${args[0]}`);
|
|
},
|
|
};
|