2022-08-28 17:03:15 +02:00
|
|
|
import { SlashCommandBuilder } from 'discord.js';
|
2022-06-20 11:42:12 +02:00
|
|
|
import fetch from 'node-fetch';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
data: new SlashCommandBuilder()
|
|
|
|
.setName('inspirobot')
|
|
|
|
.setDescription('Get an image from inspirobot'),
|
2022-08-28 17:03:15 +02:00
|
|
|
category: 'fun',
|
2022-09-02 08:35:59 +02:00
|
|
|
alias: ['ib'],
|
2022-06-20 11:42:12 +02:00
|
|
|
async execute(interaction) {
|
|
|
|
fetch('http://inspirobot.me/api?generate=true')
|
|
|
|
.then(res => res.text())
|
|
|
|
.then(body => interaction.reply({ files: [body] }));
|
|
|
|
},
|
|
|
|
};
|