ccashbot/commands/utility/user-info.js
Expand-sys 9422e6e2b3 good
2021-06-09 20:40:12 +10:00

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}`);
},
};