luna/src/commands/fox/index.js
2023-03-28 23:51:46 +03:00

14 lines
311 B
JavaScript

import { SlashCommandBuilder } from 'discord.js';
export default {
data: new SlashCommandBuilder()
.setName('fox')
.setDescription('Get a random fox!'),
async execute(interaction, api) {
await api.get('fox')()
.then(async (res) => {
await interaction.reply(res);
});
}
};