breathe.js 327 Bytes
const Discord = require('discord.js');

module.exports = {
    name: 'breathe',
    description: 'Sends a breathing gif',
    async run(client, message, args){
        message.channel.send('https://images.squarespace-cdn.com/content/v1/5f6a71b620b6aa40a963641d/1609631567334-8E5V3K3WXD4PW4YWB0ZZ/6a-1575918606525.gif');
    }
}