Files
selmerBot/commands/misc/hello_world.js
T

8 lines
183 B
JavaScript
Raw Normal View History

2022-02-17 21:42:57 -05:00
module.exports = {
name: "test",
2022-02-17 21:42:57 -05:00
description: "HI SELMER",
execute(interaction, Discord, Client, bot) {
interaction.reply("HI SELMER!!!");
},
options: []
2022-02-17 21:42:57 -05:00
}