15 lines
414 B
JavaScript
15 lines
414 B
JavaScript
import { SlashCommandBuilder } from 'discord.js';
|
|
import fetch from 'node-fetch';
|
|
|
|
export default {
|
|
data: new SlashCommandBuilder()
|
|
.setName('inspirobot')
|
|
.setDescription('Get an image from inspirobot'),
|
|
category: 'fun',
|
|
alias: ['ib'],
|
|
async execute(interaction) {
|
|
fetch('http://inspirobot.me/api?generate=true')
|
|
.then(res => res.text())
|
|
.then(body => interaction.reply({ files: [body] }));
|
|
},
|
|
};
|