19 lines
433 B
JavaScript
19 lines
433 B
JavaScript
const { SlashCommandBuilder } = require('discord.js');
|
|
|
|
module.exports = {
|
|
data: new SlashCommandBuilder()
|
|
.setName('uploadmod')
|
|
.setDescription('Upload a mod file for a specific game.'),
|
|
async execute(interaction) {
|
|
await interaction.deferReply();
|
|
|
|
//logic
|
|
|
|
interaction.editReply({ embeds:
|
|
[
|
|
new EmbedBuilder()
|
|
.setTitle("File")
|
|
]
|
|
})
|
|
},
|
|
}; |