feat(bot): add info command

This commit is contained in:
xHyroM 2023-04-09 17:02:28 +02:00
parent ad9b4cf085
commit 25a986b0a8
No known key found for this signature in database
GPG key ID: BE0423F386C436AA

View file

@ -1,4 +1,4 @@
import { InteractionResponseType } from "discord-api-types/v10"; import { InteractionResponseType, MessageFlags } from "discord-api-types/v10";
import { Command } from "../structs/Command"; import { Command } from "../structs/Command";
new Command({ new Command({
@ -10,6 +10,7 @@ new Command({
data: { data: {
content: content:
"[Website](https://roles-bot.xhyrom.dev/) | [Discord](https://discord.gg/kFPKmEKeMS)", "[Website](https://roles-bot.xhyrom.dev/) | [Discord](https://discord.gg/kFPKmEKeMS)",
flags: MessageFlags.Ephemeral,
}, },
}); });
}, },