expandschatbot/commands/utility/user-info.js
Expand-sys c117c6a55f aaa
2023-01-23 03:06:13 +11: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}`);
},
};