Files
dayz-reforger/commands/armbands.js
T
2022-12-06 20:25:59 -08:00

34 lines
696 B
JavaScript

const { ModalBuilder, ActionRowBuilder } = require('discord.js');
module.exports = {
name: "armbands",
debug: false,
global: false,
description: "view a list of armbads",
usage: "[cmd] [opts]",
permissions: {
channel: ["VIEW_CHANNEL", "SEND_MESSAGES", "EMBED_LINKS"],
member: [],
},
options: [],
SlashCommand: {
/**
*
* @param {require("../structures/QuarksBot")} client
* @param {import("discord.js").Message} message
* @param {string[]} args
* @param {*} param3
*/
run: async (client, interaction, args) => {
},
},
Interactions: {
ViewArmbads: {
run: async (client, interaction) => {
}
}
}
}