meridian-bot/commands/general/uploadmod.js
2024-02-22 17:44:31 +01:00

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")
]
})
},
};