summaryrefslogtreecommitdiff
path: root/commands/emoji.js
blob: 5724895b84f7117a4e050537b5a68cd5f3603131 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
const emoji = require('emoji-random');

module.exports = {
    name: 'emoji',
    aliases: ['moji'],
    description: '',
    execute(msg, args, bot) {
        msg.reply(emoji.random());
    }
};