summaryrefslogtreecommitdiff
path: root/commands/uptime.js
blob: f6dbefd172d5009e5d493f32c7342e9b091f1e27 (plain) (blame)
1
2
3
4
5
6
7
8
module.exports = {
    name: 'uptime',
    aliases: ['ut'],
    description: '',
    async execute(msg, args, bot, duration) {
        msg.reply(duration);
    }
};