Haha-Yes/commands/fun/inspirobot.js

15 lines
398 B
JavaScript
Raw Normal View History

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'),
category: 'fun',
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] }));
},
};