mirror of
https://github.com/Expand-sys/ccashbot
synced 2025-12-16 15:42:13 +11:00
7 lines
212 B
JavaScript
7 lines
212 B
JavaScript
module.exports = {
|
|
name: 'user-info',
|
|
description: 'Display info about yourself.',
|
|
execute(message) {
|
|
message.channel.send(`Your username: ${message.author.username}\nYour ID: ${message.author.id}`);
|
|
},
|
|
};
|