mirror of https://github.com/kry008/Bot-2.0.git
21 lines
428 B
Plaintext
21 lines
428 B
Plaintext
|
module.exports = {
|
||
|
name: '',
|
||
|
description: '',
|
||
|
help: '',
|
||
|
options: [],
|
||
|
slash: true,
|
||
|
text: true,
|
||
|
admin: false,
|
||
|
requireKick: false,
|
||
|
requireBan: false,
|
||
|
canBeUsedInDm: true,
|
||
|
contexts: ['GUILD_TEXT', 'GUILD_VOICE', 'DM'],
|
||
|
integration_types: [0,1],
|
||
|
execute(message, args) {
|
||
|
message.channel.send();
|
||
|
},
|
||
|
executeSlash(interaction) {
|
||
|
interaction.reply();
|
||
|
},
|
||
|
};
|