nyx/command/Utilities/docs.js

29 lines
665 B
JavaScript
Raw Normal View History

const axios = require("axios");
2021-09-06 12:38:25 +02:00
module.exports = {
name: "docs",
usage: "(Query)",
description: "Search the discord.js docs for something!",
type: "CHAT_INPUT",
options: [
{
type: 3,
name: "query",
description: "The query you want to search",
required: true,
},
],
run: async (client, interaction, args) => {
const query = args.join(" ");
await axios
.get(
`https://djsdocs.sorta.moe/v2/embed?src=stable&q=${encodeURIComponent(
query
)}`
)
2021-09-06 12:38:25 +02:00
.then(res => res.json())
.then(async data => {
await interaction.followUp({ embeds: [data] });
});
},
};