discord_bot/commands/fun/joke.js

14 lines
324 B
JavaScript
Raw Normal View History

2024-02-07 14:45:22 +00:00
const { Random } = require("something-random-on-discord")
const random = new Random();
module.exports = {
name: "joke",
category: "fun",
description: "Holen Sie sich ein paar lustige Witze",
run: async (client, message, args) => {
let data = await random.getJoke()
message.channel.send(data)
}
}