Inspirobot

This commit is contained in:
supositware 2022-06-20 11:42:12 +02:00
parent d118b3cd1f
commit b435d1a72b
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,13 @@
import { SlashCommandBuilder } from '@discordjs/builders';
import fetch from 'node-fetch';
export default {
data: new SlashCommandBuilder()
.setName('inspirobot')
.setDescription('Get an image from inspirobot'),
async execute(interaction) {
fetch('http://inspirobot.me/api?generate=true')
.then(res => res.text())
.then(body => interaction.reply({ files: [body] }));
},
};

View file

@ -45,6 +45,10 @@ const commands = [
option.setName('feedback')
.setDescription('The message you want to send me.')
.setRequired(true)),
new SlashCommandBuilder()
.setName('inspirobot')
.setDescription('Get an image from inspirobot'),
]
.map(command => command.toJSON());