Haha-Yes/commands/user-info.js

8 lines
238 B
JavaScript
Raw Normal View History

2018-09-07 00:24:03 +02:00
module.exports = {
name: 'user-info',
description: 'Send some information about the user',
execute(message) {
message.channel.send(`Your username: ${message.author.username}\nYour ID: ${message.author.id}`);
},
};