mirror of
https://github.com/Mestima/luna.git
synced 2025-05-05 21:50:15 +00:00
14 lines
311 B
JavaScript
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);
|
|
});
|
|
}
|
|
};
|