11 lines
238 B
Plaintext
11 lines
238 B
Plaintext
|
const { SlashCommandBuilder } = require('discord.js');
|
||
|
const fn = require('../modules/functions.js');
|
||
|
|
||
|
module.exports = {
|
||
|
data: new SlashCommandBuilder()
|
||
|
.setName('')
|
||
|
.setDescription(''),
|
||
|
async execute(interaction) {
|
||
|
await
|
||
|
},
|
||
|
};
|