aboutsummaryrefslogtreecommitdiff
path: root/commands/Utility/userinfo.js
blob: b5dbef7f3ee4c93393d50008e308ef53994b0b5a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
exports.run = async (bot, msg, args) => {
    const Discord = require('discord.js');
    const user = msg.mentions.members.first();

exports.conf = {
  aliases: ['uinfo', 'userinformation'],
  guildOnly: true,
};

exports.help = {
  name: 'userinfo',
  description: 'Shows information about the mentioned user',
  usage: '@user',
};