{
data: new SlashCommandBuilder()
.setName('dmtest')
.setDescription('sent direct message'),
async execute(interaction) {
client.users
.fetch('626680496834871308')
.then((user) => {
user.send(`Hello`,);
});
},
{
data: new SlashCommandBuilder()
.setName('dmtest')
.setDescription('sent direct message'),
async execute(interaction) {
client.users
.fetch('626680496834871308')
.then((user) => {
user.send(`Hello`,);
});
},